Skip to content

operator and date terms missing from local cv #6

@bellerbrock

Description

@bellerbrock

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;

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions