src/hg/hgTables/bigWig.c 1.3
1.3 2009/03/13 23:04:52 kent
Putting up message about limits of subtrack merge in summary status page. Getting more extended intersection options back.
Index: src/hg/hgTables/bigWig.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgTables/bigWig.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 4 -r1.2 -r1.3
--- src/hg/hgTables/bigWig.c 12 Mar 2009 19:44:21 -0000 1.2
+++ src/hg/hgTables/bigWig.c 13 Mar 2009 23:04:52 -0000 1.3
@@ -205,8 +205,13 @@
long startTime = clock1000();
htmlOpen("%s (%s) Big Wig Summary Statistics", shortLabel, table);
+if (anySubtrackMerge(database, curTable))
+ hPrintf("<P><EM><B>Note:</B> subtrack merge is currently ignored on this "
+ "page (not implemented yet). Statistics shown here are only for "
+ "the primary table %s (%s).</EM>", shortLabel, table);
+
struct bbiFile *bwf = bigWigFileOpen(fileName);
struct region *region, *regionList = getRegions();
double sumData = 0, sumSquares = 0, minVal = 0, maxVal = 0;
bits64 validCount = 0;