0704feba1b95da51d9bb71b54833196d0954695f
kate
  Wed May 28 13:54:55 2014 -0700
DNase Combined track from ENCODE Analysis, with new data format (BED5Sources).  Similar to factorSource, but more general and lighter-weight. refs #13230.
diff --git src/hg/lib/bed5Sources.as src/hg/lib/bed5Sources.as
new file mode 100644
index 0000000..4ee0e63
--- /dev/null
+++ src/hg/lib/bed5Sources.as
@@ -0,0 +1,12 @@
+table bed5Sources
+"BED5+ with a float data value field and a list of sources for combined data"
+    (
+    string chrom;      "Reference sequence chromosome or scaffold"
+    uint   chromStart; "Start position in chromosome"
+    uint   chromEnd;   "End position in chromosome"
+    string name;       "Name of item"
+    uint   score;      "Display score (0-1000)"
+    float  floatScore; "Data score (signal, p-value, z-score, etc.)"
+    uint sourceCount;   "Number of sources contributing to this item"
+    uint[sourceCount] sourceIds; "Comma separated list of source ids"
+    )