c9f02c74337b661effebb021028f73d7a1316565
kate
  Tue Feb 17 21:42:06 2015 -0800
First cut loader of GTEX gene track.  Enough here to test track display. refs #13504

diff --git src/hg/lib/gtexGeneBed.as src/hg/lib/gtexGeneBed.as
new file mode 100644
index 0000000..0ff79c1
--- /dev/null
+++ src/hg/lib/gtexGeneBed.as
@@ -0,0 +1,15 @@
+table gtexGeneBed
+"BED6+ with additional fields for gene and transcript IDs, and expression experiment scores
+    (
+    string chrom;       "Reference sequence chromosome or scaffold"
+    uint   chromStart;  "Start position in chromosome"
+    uint   chromEnd;    "End position in chromosome"
+    string name;        "Gene symbol"
+    uint   score;      "Score from 0-1000"
+    char[1] strand;     "+ or - for strand"
+    string geneId;      "Ensembl gene ID, referenced in GTEx data tables"
+    string transcriptId;       "Ensembl ID of Canonical transcript; determines genomic position"
+    string transcriptClass;    "GENCODE transcript class (coding, nonCoding, pseudo)
+    uint expCount;             "Number of experiment values"
+    float[expCount] expScores; "Comma separated list of experiment scores"
+    )