1084bf14211e7e4ace072d7a213672f3a8f98be1 kate Fri Jul 24 17:30:21 2015 -0700 Scale wrt all genes, not just those in window. We now save the max tissue median score in the gtexInfo table. refs #15645 diff --git src/hg/lib/gtexInfo.sql src/hg/lib/gtexInfo.sql new file mode 100644 index 0000000..eb4512c --- /dev/null +++ src/hg/lib/gtexInfo.sql @@ -0,0 +1,13 @@ +# 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 + maxMedianScore double not null, # Maximum score observed for a tissue median (use to scale display) + #Indices + PRIMARY KEY(version) +);