src/hg/archaeStuff/tooltip/tooltip.c 1.8
1.8 2010/05/11 01:43:24 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/archaeStuff/tooltip/tooltip.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/archaeStuff/tooltip/tooltip.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -b -B -U 4 -r1.7 -r1.8
--- src/hg/archaeStuff/tooltip/tooltip.c 12 Feb 2010 18:03:12 -0000 1.7
+++ src/hg/archaeStuff/tooltip/tooltip.c 11 May 2010 01:43:24 -0000 1.8
@@ -287,15 +287,15 @@
int winEnd = cartInt(cart, "t");
struct wiggleDataStream *wds = wiggleDataStreamNew();
unsigned span = 0;
boolean hasBin;
- hFindSplitTable(database, seqName, tdb->tableName, table, &hasBin);
+ hFindSplitTable(database, seqName, tdb->table, table, &hasBin);
span = minSpan(conn, table, chrom, winStart, winEnd, cart, tdb);
wds->setSpanConstraint(wds, span);
wds->setChromConstraint(wds, chrom);
wds->setPositionConstraint(wds, winStart, winEnd);
wds->getData(wds, database, table, 8);
- //hPrintf("<B>Mean:</B>%s <BR>\n",tdb->tableName);
+ //hPrintf("<B>Mean:</B>%s <BR>\n",tdb->table);
hPrintf("<B>Window Mean:</B> %f<BR>\n", wds->stats->mean);
}
void alignInfoTip()
{