616062bf13f7e2b83b636936ec237d22caad6d94
kate
  Tue Mar 28 21:18:23 2017 -0700
Add boxplot to details page. Fix colors on track config page. refs #18736

diff --git src/hg/lib/barChartData.sql src/hg/lib/barChartData.sql
new file mode 100644
index 0000000..e9fd50b
--- /dev/null
+++ src/hg/lib/barChartData.sql
@@ -0,0 +1,13 @@
+# barChartData.sql was originally generated by the autoSql program, which also 
+# generated barChartData.c and barChartData.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#Measured value for a sample at a locus, used for barChart track details (boxplot)
+CREATE TABLE barChartData (
+    locus varchar(255) not null,	# Locus identifier (e.g. gene name)
+    sample varchar(255) not null,	# Sample identifier (as in barChartSample table)
+    value double not null,	# Measured value (e.g. expression level)
+              #Indices
+    INDEX(locus)
+);