Statistics
| Branch: | Revision:

root / dbTable.sql @ 4bbad921

History | View | Annotate | Download (1.8 kB)

1 8c368a17 Daofeng Li
-- ------------------
2 8c368a17 Daofeng Li
--
3 8c368a17 Daofeng Li
--     WashUGb
4 8c368a17 Daofeng Li
--
5 8c368a17 Daofeng Li
-- ------------------
6 8c368a17 Daofeng Li
drop table if exists dbTable;
7 8c368a17 Daofeng Li
create table dbTable (
8 8c368a17 Daofeng Li
  dbName varchar(255) not null,
9 8c368a17 Daofeng Li
  dbLabel varchar(255) not null,
10 8c368a17 Daofeng Li
  organism varchar(255) not null,
11 8c368a17 Daofeng Li
  -- font color to be used in genome list
12 8c368a17 Daofeng Li
  fontcolor char(10) not null,
13 8c368a17 Daofeng Li
  -- major reference genome of this species
14 4bbad921 Daofeng Li
  isMajor boolean not null,
15 4bbad921 Daofeng Li
  ToL text null
16 8c368a17 Daofeng Li
);
17 8c368a17 Daofeng Li
18 4bbad921 Daofeng Li
insert into dbTable values("hg19", "Human hg19", "human", 'white', true, 'Animalia');
19 4bbad921 Daofeng Li
insert into dbTable values("hg18", "Human hg18", "human", 'white', false, \N);
20 4bbad921 Daofeng Li
insert into dbTable values("danRer7", "Zebrafish danRer7", "zebrafish", 'white', true, 'Animalia');
21 4bbad921 Daofeng Li
insert into dbTable values("mm9", "Mouse mm9", "mouse", 'white', true, 'Animalia');
22 4bbad921 Daofeng Li
insert into dbTable values("mm10", "Mouse mm10", "mouse", 'white', false, \N);
23 4bbad921 Daofeng Li
insert into dbTable values("rn4", "Rat rn4", "rat", 'white', true, 'Animalia');
24 4bbad921 Daofeng Li
insert into dbTable values("dm3", "Fruit fly dm3", "fruit fly", 'white', true, 'Animalia');
25 4bbad921 Daofeng Li
insert into dbTable values("tair10", "Arabidopsis tair10", "arabidopsis", 'white', true, 'Plantae');
26 4bbad921 Daofeng Li
insert into dbTable values("AGPv2", "Maize AGPv2", "maize", 'white', true, 'Plantae');
27 4bbad921 Daofeng Li
insert into dbTable values("Gmax_189", "Soybean 189", "soybean", 'black', true, 'Plantae');
28 4bbad921 Daofeng Li
insert into dbTable values("Pvulgaris_218", "Common bean 218", "common bean", 'black', true, 'Plantae');
29 4bbad921 Daofeng Li
insert into dbTable values("rapa1_1", "Chinese cabbage v1.1", "cabbage", 'black', true, 'Plantae');
30 4bbad921 Daofeng Li
insert into dbTable values("spombe201203", "S. pombe 2012-03", "spombe", 'white', true, 'Fungi');
31 4bbad921 Daofeng Li
insert into dbTable values("AcNPV", "Autographa californica NPV", "AcNPV", 'white', true, 'Virus');
32 4bbad921 Daofeng Li
33 4bbad921 Daofeng Li
insert into dbTable values("temporal_day", "Temporal data at day precision", "temporal_day", 'white', true, 'Others');
34 71d28e6f Daofeng Li
-- insert into dbTable values("Am1", "Am1.0", "arabidopsis", 'white', true);