94ede1ea407d8386c6b6afe76bfe412e1bfc2442
kate
  Thu Jun 13 12:43:46 2013 -0700
Enable Larry Meyer's implementation of this feature.  refs #9092
diff --git src/hg/inc/txCluster.h src/hg/inc/txCluster.h
index 59c7606..b6f4c6b 100644
--- src/hg/inc/txCluster.h
+++ src/hg/inc/txCluster.h
@@ -1,26 +1,28 @@
 /* txCluster.h was originally generated by the autoSql program, which also 
  * generated txCluster.c and txCluster.sql.  This header links the database and
  * the RAM representation of objects. */
 
 #ifndef TXCLUSTER_H
 #define TXCLUSTER_H
 
 #define TXCLUSTER_NUM_COLS 8
 
 // Turn this on to show high-confidence binding sites within clusters.
-// #define TXCLUSTER_MOTIFS_TABLE "wgEncodeRegTfbsClusteredMotifs"
+// TODO: Belongs elsewhere (reg not tx code), and 
+// it should be a track setting rather than hard-coded tablename
+#define TXCLUSTER_MOTIFS_TABLE "wgEncodeRegTfbsClusteredMotifs"
 
 struct txCluster
 /* A cluster of transcripts or coding regions */
     {
     struct txCluster *next;  /* Next in singly linked list. */
     char *chrom;	/* Chromosome (or contig) */
     int chromStart;	/* Zero based start within chromosome. */
     int chromEnd;	/* End coordinate, non inclusive. */
     char *name;	/* Cluster name */
     int score;	/* BED score - 0-1000.  0 if not used. */
     char strand[2];	/* Strand - either plus or minus */
     int txCount;	/* Count of transcripts */
     char **txArray;	/* Array of transcripts */
     };