root / dbTable.sql @ 5f46a05f
History | View | Annotate | Download (1.2 kB)
1 |
-- ------------------
|
---|---|
2 |
--
|
3 |
-- WashUGb |
4 |
--
|
5 |
-- ------------------ |
6 |
drop table if exists dbTable; |
7 |
create table dbTable ( |
8 |
dbName varchar(255) not null, |
9 |
dbLabel varchar(255) not null, |
10 |
organism varchar(255) not null, |
11 |
-- font color to be used in genome list
|
12 |
fontcolor char(10) not null, |
13 |
-- major reference genome of this species
|
14 |
isMajor boolean not null |
15 |
); |
16 |
|
17 |
insert into dbTable values("hg19", "Human hg19", "human", 'white', true); |
18 |
insert into dbTable values("hg18", "Human hg18", "human", 'white', false); |
19 |
insert into dbTable values("danRer7", "Zebrafish danRer7", "zebrafish", 'white', true); |
20 |
insert into dbTable values("mm9", "Mouse mm9", "mouse", 'white', true); |
21 |
insert into dbTable values("rn4", "Rat rn4", "rat", 'white', true); |
22 |
insert into dbTable values("dm3", "Fruit fly dm3", "fruit fly", 'white', true); |
23 |
insert into dbTable values("tair10", "Arabidopsis tair10", "arabidopsis", 'white', true); |
24 |
insert into dbTable values("AGPv2", "Maize AGPv2", "maize", 'white', true); |
25 |
insert into dbTable values("spombe201203", "S. pombe 2012-03", "spombe", 'white', true); |
26 |
insert into dbTable values("temporal_day", "Temporal data at day precision", "temporal_day", 'white', true); |
27 |
insert into dbTable values("Am1", "Am1.0", "arabidopsis", 'white', true); |