3a63c684fc647b345d52e96147b3344453b3d28a kate Fri Jul 31 10:12:14 2015 -0700 1. Fix tissue ordering problem (hgGtex). 2. Add stats table (rename gtexTissueData to gtexTissueMedian and use gtexTissueData for stats. 3. Extend gtexInfo table.refs #15645 diff --git src/hg/lib/gtexInfo.sql src/hg/lib/gtexInfo.sql index eb4512c..44eea6e 100644 --- src/hg/lib/gtexInfo.sql +++ src/hg/lib/gtexInfo.sql @@ -1,13 +1,14 @@ # gtexInfo.sql was originally generated by the autoSql program, which also # generated gtexInfo.c and gtexInfo.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #GTEx general information CREATE TABLE gtexInfo ( version varchar(255) not null, # GTEX data release (e.g. V4, V6) releaseDate varchar(255) not null, # Release date + maxScore double not null, # Maximum score observed (use to scale display) maxMedianScore double not null, # Maximum score observed for a tissue median (use to scale display) #Indices PRIMARY KEY(version) );