965d1048e8671fb3a5630fe75deb88f24df386d7 kate Wed Aug 13 15:01:59 2014 -0700 Expand schema for GTex. Create tissue short names and use these in sample and data tables. refs #13504 diff --git src/hg/lib/gtexTissue.sql src/hg/lib/gtexTissue.sql new file mode 100644 index 0000000..0f7477e --- /dev/null +++ src/hg/lib/gtexTissue.sql @@ -0,0 +1,14 @@ +# gtexTissue.sql was originally generated by the autoSql program, which also +# generated gtexTissue.c and gtexTissue.h. This creates the database representation of +# an object which can be loaded and saved from RAM in a fairly +# automatic way. + +#GTEx tissue information +CREATE TABLE gtexTissue ( + id int unsigned not null, # internal id + name varchar(255) not null, # short UCSC identifier + description varchar(255) not null, # GTEX tissue type detail + organ varchar(255) not null, # GTEX tissue collection area + #Indices + PRIMARY KEY(id) +);