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/gtexAse.as src/hg/lib/gtexAse.as
index a034280..7c3ee94 100644
--- src/hg/lib/gtexAse.as
+++ src/hg/lib/gtexAse.as
@@ -1,16 +1,22 @@
 table gtexAse
 "BED9+ with additional fields for ASE, coverage, and sample count
     (
     string chrom;       "Reference sequence chromosome or scaffold"
     uint   chromStart;  "Start position in chromosome"
     uint   chromEnd;    "End position in chromosome"
     string name;        "SNP Id"
     uint   score;       "Score from 0-1000; derived from median ASE level"
     char[1] strand;     "n/a"
     uint thickStart;    "n/a"
     uint thickEnd;      "n/a"
-    uint rgb;           "Color by ASE value"
-    float ASE;          "Allelic imbalance (0-.5)"
+    uint itemRgb;       "Color based on median ASE value"
+    float medianASE;    "Allelic imbalance (0-.5) median"
     float coverage;     "RNA-seq reads overlapping this position"
     uint samples;       "Sample count"
+    uint donors;        "Donor count"
+    float minASE;       "Minimum ASE"
+    float q1ASE;        "Q1 ASE"
+    float q3ASE;        "Q3 ASE"
+    float maxASE;       "Maximum ASE"
+    float stdASE;       "ASE standard deviation"
     )