be4311c07e14feb728abc6425ee606ffaa611a58
markd
  Fri Jan 22 06:46:58 2021 -0800
merge with master

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