013ccd312d93bfb526241f9d81c4327a3b169b2e kate Tue Aug 9 14:52:59 2016 -0700 Extend gtexAse file format to include quartiles, donors. Add GTEx abbreviation to tissue table. Generalize the new hub as GTex analysis. diff --git src/hg/lib/gtexTissue.sql src/hg/lib/gtexTissue.sql index c24ab71..78980f0 100644 --- src/hg/lib/gtexTissue.sql +++ src/hg/lib/gtexTissue.sql @@ -1,15 +1,16 @@ # 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 color int unsigned not null, # GTEX assigned color + abbrev varchar(255) not null, # GTEX tissue abbreviation #Indices PRIMARY KEY(id) );