src/hg/hgTables/intersect.c 1.47

1.47 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/intersect.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgTables/intersect.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -b -B -U 4 -r1.46 -r1.47
--- src/hg/hgTables/intersect.c	13 Mar 2009 21:40:33 -0000	1.46
+++ src/hg/hgTables/intersect.c	13 Mar 2009 23:04:52 -0000	1.47
@@ -125,9 +125,11 @@
 char *name = curTableLabel();
 char *iName, *iTable;
 char *onChange = onChangeEither();
 char *op, *setting;
-boolean wigOptions = (isWiggle(database, curTable) || isBedGraph(curTable) || isBigWig(curTable));
+boolean wigOptions = (isWiggle(database, curTable) || isBedGraph(curTable));
+// Note - bigWig is purposely left out of wigOptions.   It supports more intersection options
+// than wig does.
 struct hTableInfo *hti1 = maybeGetHti(database, curTable), *hti2 = NULL;
 htmlOpen("Intersect with %s", name);
 
 hPrintf("<FORM ACTION=\"%s\" NAME=\"mainForm\" METHOD=GET>\n", getScriptName());