-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
Loading phenotypes fails on StorePhenotypes.pm line 453 and 454 thanks to missing cvterms.
We should add them to the dockerfile db. In the meantime I used the following sql to add them manually:
BEGIN;
INSERT INTO dbxref (db_id,accession) VALUES (273,'operator');
INSERT INTO dbxref (db_id,accession) VALUES (273,'date');
INSERT INTO cvterm (cv_id,name,definition,dbxref_id)
VALUES (39,'operator','',( SELECT dbxref_id FROM dbxref WHERE accession = 'operator' ));
INSERT INTO cvterm (cv_id,name,definition,dbxref_id)
VALUES (39,'date','',( SELECT dbxref_id FROM dbxref WHERE accession = 'date' ));
COMMIT;
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels