46bc703af423d0af3118a2caf61b42e29deb01f1 braney Thu May 8 11:59:14 2014 -0700 delete warning for wiggle min/max that was only output on hgwdev. diff --git src/hg/lib/wiggleCart.c src/hg/lib/wiggleCart.c index f2b45a4..dbf116e 100644 --- src/hg/lib/wiggleCart.c +++ src/hg/lib/wiggleCart.c @@ -208,38 +208,30 @@ if (defaultViewLimits == NULL) defaultViewLimits = trackDbSettingClosestToHomeOrDefault(tdb, VIEWLIMITS, NULL); if (defaultViewLimits != NULL) { double viewLimitMin = 0.0, viewLimitMax = 0.0; parseColonRange(defaultViewLimits, &viewLimitMin, &viewLimitMax); *retMin = viewLimitMin; *retMax = viewLimitMax; if (missingAbsMax) absMax = viewLimitMax; if (missingAbsMin) absMin = viewLimitMin; } else if (missingAbsMin || missingAbsMax) { - // I would like to make this an errAbort, but too many tracks are afflicted - // to do that until hgTrackDb helps to enforce: - if (hIsPrivateHost()) - warn("trackDb %s, and no default view limits are specified for track %s", - (isBedGraph ? MIN_LIMIT " and/or " MAX_LIMIT " is not specified" : - "'type wig' line is missing min and/or max data value"), - tdb->track); - // When that becomes an errAbort, remove these defines from wiggle.h: if (isBedGraph) { absMin = DEFAULT_MIN_BED_GRAPH; absMax = DEFAULT_MAX_BED_GRAPH; } else { absMin = DEFAULT_MIN_Yv; absMax = DEFAULT_MAX_Yv; } *retMin = absMin; *retMax = absMax; } else {