Skip to content
Snippets Groups Projects
Commit 3631cfad authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Added EMBL to list of sources (columns other than name are null, so it is not...

Added EMBL to list of sources (columns other than name are null, so it is not used as a source to upload from)
parent 66073599
No related branches found
No related tags found
No related merge requests found
......@@ -65,8 +65,8 @@ CREATE TABLE source (
name varchar(255) not null,
url varchar(255),
checksum varchar(255),
file_modified_date datetime not null,
upload_date datetime not null,
file_modified_date datetime,
upload_date datetime,
release varchar(255),
PRIMARY KEY (source_id),
......@@ -84,6 +84,9 @@ INSERT INTO source VALUES (5, 'UniProt_SwissProt_caenorhabditis_elegans', 'ftp:/
INSERT INTO source VALUES (6, 'UniProt_SwissProt_gallus_gallus', 'ftp://ftp.ebi.ac.uk/pub/databases/SPproteomes/swissprot_files/proteomes/9031.SPC', '', now(), now(), 1);
INSERT INTO source VALUES (7, 'UniProt_SwissProt_pan_troglodytes', 'ftp://ftp.ebi.ac.uk/pub/databases/SPproteomes/swissprot_files/proteomes/9598.SPC', '', now(), now(), 1);
# Other sources - used to create dependent xrefs, but not to upload from
INSERT INTO source VALUES (100, 'EMBL', null, null, null, null, null);
################################################################################
CREATE TABLE species (
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment