We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
C'est genre.. urgentissime, là.
The text was updated successfully, but these errors were encountered:
Si vous avez le temps, réfléchissez à ça sur le shéma des tables, et j'essayerai de me grouiller pour l'implémentation.
Sorry, something went wrong.
Bon, du coup, ce que je vous propose en contrainte :
CREATE TABLE pdb_file ( id VARCHAR(4) NOT NULL UNIQUE, seq TEXT NOT NULL, keywords TEXT, name TEXT, head TEXT, deposition_date TEXT, release_date TEXT, structure_method TEXT, resolution FLOAT, structure_reference TEXT, journal_reference TEXT, author TEXT, compound TEXT, PRIMARY KEY (id) ); CREATE TABLE chain ( id VARCHAR(1) NOT NULL, pdb_id VARCHAR(4) NOT NULL UNIQUE, start INTEGER NOT NULL , stop INTEGER NOT NULL, PRIMARY KEY (id, pdb_id), FOREIGN KEY(pdb_id) REFERENCES pdb_file (id) ); CREATE TABLE annotation ( pdb_id VARCHAR(4) NOT NULL, method VARCHAR NOT NULL, result TEXT NOT NULL, PRIMARY KEY (pdb_id, method), FOREIGN KEY(pdb_id) REFERENCES pdb_file (id) ); CREATE TABLE angle ( pdb_id VARCHAR(4) NOT NULL, atom_idx INTEGER NOT NULL, phi FLOAT, psi FLOAT, PRIMARY KEY (pdb_id, atom_idx), FOREIGN KEY(pdb_id) REFERENCES pdb_file (id) );
@jecarvaill : t'en voit d'autre, des contraintes d'inté ?
C'est bon pour moi. Les plus importantes sont soulignées. Le reste peut être considéré comme information annexe.
NicolasBourassin
CharlottePerin
No branches or pull requests
C'est genre.. urgentissime, là.
The text was updated successfully, but these errors were encountered: