src/hg/lib/makeItemsItem.as 1.3

1.3 2010/04/10 01:13:58 kent
Taking a few more steps towards making the makeItems type custom track. It actually seems to be storing ranges in the customTrash database and displaying them now based on your javascript selections!
Index: src/hg/lib/makeItemsItem.as
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/makeItemsItem.as,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 1000000 -r1.2 -r1.3
--- src/hg/lib/makeItemsItem.as	9 Apr 2010 17:45:57 -0000	1.2
+++ src/hg/lib/makeItemsItem.as	10 Apr 2010 01:13:58 -0000	1.3
@@ -1,13 +1,15 @@
 table makeItemsItem
 "An item in a makeItems type track."
     (
     uint bin;	       "Bin for range index"
     string chrom;      "Reference sequence chromosome or scaffold"
     uint   chromStart; "Start position in chromosome"
     uint   chromEnd;   "End position in chromosome"
     string name;       "Name of item - up to 16 chars"
-    char[1] strand;     "+ or - for strand"
     uint  score;	"0-1000.  Higher numbers are darker."
-    string color;	"Comma separated list of RGB components.  IE 255,0,0 for red"
+    char[1] strand;     "+ or - for strand"
+    uint   thickStart; "Start of thick part"
+    uint   thickEnd;   "End position of thick part"
+    uint itemRgb;	"RGB 8 bits each as in bed"
     lstring description; "Longer item description"
     )