src/hg/hgTables/bigWig.c 1.4
1.4 2009/03/17 17:24:50 kent
Simplifying some logic where code was unnecessarily distinguishing between hPrintf and fprintf(stdout - which is an issue in the Genome Browser, but not here in the Table Browser. Also enabling select fields user interface.
Index: src/hg/hgTables/bigWig.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgTables/bigWig.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -B -U 4 -r1.3 -r1.4
--- src/hg/hgTables/bigWig.c 13 Mar 2009 23:04:52 -0000 1.3
+++ src/hg/hgTables/bigWig.c 17 Mar 2009 17:24:50 -0000 1.4
@@ -282,10 +282,8 @@
void bigWigFillDataVector(char *table, struct region *region,
struct sqlConnection *conn, struct dataVector *vector)
/* Fill in data vector with bigWig info on region. Handles filters and intersections. */
{
-uglyf("bigWigFillDataVector table=%s region=%s:%d-%d<BR>\n", table, region->chrom, region->start, region->end);
-
/* Figure out filter values if any. */
double ll, ul;
enum wigCompare cmp;
getWigFilter(database, curTable, &cmp, &ll, &ul);
@@ -320,9 +318,8 @@
struct sqlConnection *conn, struct region *region)
/* Read in bigWig as dataVector and return it. Filtering, subtrack merge
* and intersection are handled. */
{
-uglyf("bigWigDataVector table=%s region=%s:%d-%d<BR>\n", table, region->chrom, region->start, region->end);
if (anySubtrackMerge(database, table))
return mergedWigDataVector(table, conn, region);
else
{