faae11b2f6fe529451664e1d979ca8426a9b4a73
braney
  Sun Jan 11 09:05:10 2026 -0800
Revert "bigBeds with less than five fields with filters should show them on the"

This reverts commit 5602c6f4da7d31d02fcf849c6dce1ef329cca3ef.

diff --git src/hg/lib/trackDbCustom.c src/hg/lib/trackDbCustom.c
index f7734daae5f..605a027e680 100644
--- src/hg/lib/trackDbCustom.c
+++ src/hg/lib/trackDbCustom.c
@@ -743,31 +743,31 @@
      && !startsWith("encodeGencodeRaceFrags", tdb->track)) // SPECIAL CASE should fix in trackDb!
     cType = cfgGenePred;
 else if (sameWord("bedLogR",type)
      ||  sameWord("peptideMapping", type))
     cType = cfgBedScore;
 // This is a catch-all for big* types that are not special-cased above.  big* types after this
 // point are assumed to be flavors of bigBed.
 else if (startsWith("bed ", type) || startsWith("big", type) || startsWith("bedDetail", type))
     {
     if (trackDbSetting(tdb, "bedFilter") != NULL)
         cType = cfgBedFilt;
     else if (!startsWith("big", type) || startsWith("bigBed", type))
         {
         char *words[3];
         int wordCount = chopLine(cloneString( type), words);
-        if (startsWith("bigBed", type) )
+        if (sameString("bigBed", type) && (wordCount == 1)) // no following words
             {
             cType = cfgBedScore;
 	    if (!bedHasFilters(tdb))
 		cType = cfgNone;
             }
         else if ((  ((wordCount > 1) && (atoi(words[1]) >= 5))
             || trackDbSetting(tdb, "scoreMin") != NULL)
         &&  // Historically needed 'bed n .' but encode didn't follow bed n .
             (  (wordCount >= 3)
             || (!tdbIsTrackUiTopLevel(tdb) && trackDbSettingClosestToHome(tdb, "wgEncode"))))
             {
             cType = cfgBedScore;
 
 	    if (!bedScoreHasCfgUi(tdb))
 		cType = cfgNone;