349dc938fdeb4ed133dc6bc6710e9c9505c22170 braney Wed Jun 14 14:56:25 2017 -0700 take out "add" and "subtract" as options for overlay mode in custom composites diff --git src/hg/lib/hui.c src/hg/lib/hui.c index 67a8594..575565e 100644 --- src/hg/lib/hui.c +++ src/hg/lib/hui.c @@ -5125,33 +5125,30 @@ boolean doNegative = wigFetchDoNegativeWithCart(cart,tdb,tdb->track, (char **) NULL); printf("<TABLE BORDER=0>"); boolean parentLevel = isNameAtParentLevel(tdb, name); boolean didAggregate = FALSE; if (parentLevel) { assert(tdb->parent != NULL); char *aggregate = trackDbSetting(tdb->parent, "aggregate"); if (aggregate != NULL && parentLevel) { char *aggregateVal = cartOrTdbString(cart, tdb->parent, "aggregate", NULL); printf("<TR valign=center><th align=right>Overlay method:</th><td align=left>"); safef(option, sizeof(option), "%s.%s", name, AGGREGATE); - if (isCustomComposite(tdb)) - aggregateExtraDropDown(option, aggregateVal); - else aggregateDropDown(option, aggregateVal); puts("</td></TR>"); if (sameString(aggregateVal, WIG_AGGREGATE_STACKED) && sameString(windowingFunction, "mean+whiskers")) { windowingFunction = "maximum"; } didAggregate = TRUE; } } printf("<TR valign=center><th align=right>Type of graph:</th><td align=left>"); safef( option, sizeof(option), "%s.%s", name, LINEBAR );