1291f2242d9627684efaa88259c1c09f5e7c1b10 braney Thu Apr 4 07:19:11 2019 -0700 some lollipop code leaked out on my last commit, so here's more leakage! diff --git src/hg/lib/trackDbCustom.c src/hg/lib/trackDbCustom.c index 12bb0f9..f050cef 100644 --- src/hg/lib/trackDbCustom.c +++ src/hg/lib/trackDbCustom.c @@ -751,30 +751,32 @@ cType = cfgChain; else if (startsWith("bamWig", type)) cType = cfgWig; else if (startsWith("bam", type)) cType = cfgBam; else if (startsWith("psl", type) || startsWith("bigPsl", type)) cType = cfgPsl; else if (sameWord("vcfTabix",type) || sameWord("vcf", type)) cType = cfgVcf; else if (sameWord("halSnake",type)) cType = cfgSnake; else if (sameWord("barChart", type) || sameWord("bigBarChart", type)) cType = cfgBarChart; else if (sameWord("interact", type) || sameWord("bigInteract", type)) cType = cfgInteract; +else if (sameWord("bigLolly", type)) + cType = cfgLollipop; // TODO: Only these are configurable so far if (cType == cfgNone && warnIfNecessary) { if (!startsWith("bed ", type) && !startsWith("bedDetail", type) && !startsWith("bigBed", type) && !startsWith("gvf", type) && !sameString("pgSnp", type) && subgroupFind(tdb, "view", NULL)) warn("Track type \"%s\" is not yet supported in multi-view composites for %s.",type,tdb->track); } return cType; } int configurableByAjax(struct trackDb *tdb, eCfgType cfgTypeIfKnown) // Is this track configurable by right-click popup, or in hgTrackUi subCfg? // returns 0 = no; <0=explicitly blocked; >0=allowed and will be cfgType if determined