22de2ca120322e016c858be3738ae1be34f5b5f8 braney Thu Jun 13 15:24:22 2019 -0700 fixed a couple of other places where bigLolly was assumed to be a stand-alone type with no addtional words diff --git src/hg/lib/trackDbCustom.c src/hg/lib/trackDbCustom.c index b2c9be8..8afd61b 100644 --- src/hg/lib/trackDbCustom.c +++ src/hg/lib/trackDbCustom.c @@ -755,31 +755,31 @@ 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)) +else if (startsWith("bigLolly", type)) cType = cfgLollipop; else if (sameWord("hic", type)) cType = cfgHic; // 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; }