2530ca0451b74a28dcf4abc8edaf10d49c48d6ce braney Mon Oct 3 14:28:01 2022 -0700 add option for bigSnp to go into wiggle mode diff --git src/hg/lib/hui.c src/hg/lib/hui.c index e6e967c..6f61093 100644 --- src/hg/lib/hui.c +++ src/hg/lib/hui.c @@ -4822,30 +4822,32 @@ boolean parentLevel = isNameAtParentLevel(leafTdb, name); double minMaf = cartUsualDoubleClosestToHome(cart, leafTdb, parentLevel, "minMaf", 0.0); char cartVar[1024]; safef(cartVar, sizeof cartVar, "%s.minMaf", name); cgiMakeDoubleVarWithLimits(cartVar, minMaf, "MAF", 0, 0.0, 0.5); puts("range: 0.0 - 0.5<br>"); // Make wrapper table for collapsible sections: puts("<TABLE border=0 cellspacing=0 cellpadding=0>"); snp153OfferGeneTracksForFunction(db, cart, name, leafTdb, correctTdb); // End wrapper table for collapsible sections: puts("</TABLE>"); +wigOption(cart, name, title, leafTdb); + cfgEndBox(boxed); } void cfgByCfgType(eCfgType cType,char *db, struct cart *cart, struct trackDb *tdb,char *prefix, char *title, boolean boxed) // Methods for putting up type specific cfgs used by composites/subtracks in hui.c { // When only one subtrack, then show it's cfg settings instead of composite/view level settings // This simplifies the UI where hgTrackUi won't have 2 levels of cfg, // while hgTracks still supports rightClick cfg of the subtrack. if (configurableByAjax(tdb,cType) > 0) // Only if subtrack's configurable by ajax do we { // consider this option if (tdbIsComposite(tdb) // called for the composite && !isCustomComposite(tdb)