30632e578f8f276e1d2a6e021dc9cb8eb5e882f4
kate
  Mon May 1 15:54:05 2017 -0700
Add name2 to schema, to support alternate names. refs #18736

diff --git src/hg/lib/barChartBed.as src/hg/lib/barChartBed.as
index ac48ee6..0dc20f3 100644
--- src/hg/lib/barChartBed.as
+++ src/hg/lib/barChartBed.as
@@ -1,15 +1,15 @@
 table barChartBed
 "BED6+5 with additional fields for category count and median values, and sample matrix fields"
     (
     string chrom;       "Reference sequence chromosome or scaffold"
     uint   chromStart;  "Start position in chromosome"
     uint   chromEnd;    "End position in chromosome"
     string name;        "Name or ID of item, ideally both human readable and unique"
     uint   score;       "Score from 0-1000, typically derived from total of median value from all categories"
     char[1] strand;     "+ or - for strand. Use . if not applicable"
+    string name2;       "Alternative name for item"
     uint expCount;      "Number of categories"
     float[expCount] expScores; "Comma separated list of category values"
-    bigint _dataOffset;  "Offset of sample data in data matrix file, for boxplot on details page."
-    int _dataLen;        "Length of sample data row in data matrix file.
-    string gene;		"Hugo gene name associated with the transcript."
+    bigint _dataOffset; "Offset of sample data in data matrix file, for boxplot on details page"
+    int _dataLen;       "Length of sample data row in data matrix file"
     )