5c53721cad04423b6081f27b315b0d584807a0ea
kent
  Wed Jan 6 16:04:43 2021 -0800
Added a barChart with fewer fields because I don't have and index for exprMatrix.

diff --git src/hg/lib/simpleBarChartBed.as src/hg/lib/simpleBarChartBed.as
new file mode 100644
index 0000000..f606909
--- /dev/null
+++ src/hg/lib/simpleBarChartBed.as
@@ -0,0 +1,13 @@
+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"
+    )