src/hg/lib/trackDb.as 1.6

1.6 2010/05/11 01:43:30 kent
Refactoring to split the trackDb.tableName field into separate track and table fields. Similarly track.mapName field goes to the same track and table fields.
Index: src/hg/lib/trackDb.as
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/trackDb.as,v
retrieving revision 1.5
retrieving revision 1.6
diff -b -B -U 1000000 -r1.5 -r1.6
--- src/hg/lib/trackDb.as	27 Apr 2004 00:03:10 -0000	1.5
+++ src/hg/lib/trackDb.as	11 May 2010 01:43:30 -0000	1.6
@@ -1,25 +1,25 @@
 table trackDb
 "This describes an annotation track."
 (
-string tableName; "Symbolic ID of Track"
+string track; 	"Symbolic ID of Track"
 string shortLabel; "Short label displayed on left"
 string type;      "Track type: bed, psl, genePred, etc."
 string longLabel; "Long label displayed in middle"
 ubyte visibility; "0=hide, 1=dense, 2=full, 3=pack, 4=squish"
 float priority;   "0-100 - where to position.  0 is top"
 ubyte colorR;	  "Color red component 0-255"
 ubyte colorG;	  "Color green component 0-255"
 ubyte colorB;	  "Color blue component 0-255"
 ubyte altColorR;  "Light color red component 0-255"
 ubyte altColorG;  "Light color green component 0-255"
 ubyte altColorB;  "Light color blue component 0-255"
 ubyte useScore;   "1 if use score, 0 if not"
 ubyte private;	  "1 if only want to show it on test site"
 int restrictCount;	"Number of chromosomes this is on (0=all though!)"
 string[restrictCount] restrictList; "List of chromosomes this is on"
 lstring url;	"URL to link to when they click on an item"
 lstring html;   "Some html to display when they click on an item"
 string grp;   "Which group track belongs to"
 ubyte canPack; "1 if can pack track display, 0 otherwise"
 lstring settings; "Name/value pairs for track-specific stuff"
 )