d2698ab46be18b70983ab1bd3121d01cd818389a braney Fri Feb 3 14:53:49 2017 -0800 oops fixed a problem with bed scores diff --git src/hg/lib/trackDbCustom.c src/hg/lib/trackDbCustom.c index 9754194..ea12cf7 100644 --- src/hg/lib/trackDbCustom.c +++ src/hg/lib/trackDbCustom.c @@ -637,32 +637,30 @@ } } eCfgType cfgTypeFromTdb(struct trackDb *tdb, boolean warnIfNecessary) /* determine what kind of track specific configuration is needed, warn if not multi-view compatible */ { eCfgType cType = cfgNone; char *type = tdb->type; assert(type != NULL); if(startsWith("wigMaf", type) || startsWith("bigMaf", type)) cType = cfgWigMaf; else if(startsWith("wig", type)) cType = cfgWig; -else if(startsWith("bigBed", type)) - cType = cfgBigBed; else if(startsWith("bigGenePred", type)) cType = cfgGenePred; else if(startsWith("bigWig", type)) cType = cfgWig; else if(startsWith("longTabix", type)) cType = cfgLong; else if(startsWith("bedGraph", type)) cType = cfgWig; else if (startsWith("netAlign", type) || startsWith("net", tdb->track)) // SPECIAL CASE from hgTrackUi which might not be needed cType = cfgNetAlign; else if(sameWord("bed5FloatScore", type) || sameWord("bed5FloatScoreWithFdr",type)) { if (bedScoreHasCfgUi(tdb))