9723799cf6f1a8fb714ae1493b224b8e91aebf09
tdreszer
  Mon Jul 30 12:17:38 2012 -0700
Making final pass through tree of checkins as dictated by Jim. None of these changes should affect executables in any way. This pass is due to expanding fingerprint caused by kompare.
diff --git src/hg/lib/trackDbCustom.c src/hg/lib/trackDbCustom.c
index 52d5ba0..255dc35 100644
--- src/hg/lib/trackDbCustom.c
+++ src/hg/lib/trackDbCustom.c
@@ -708,36 +708,35 @@
     cType = cfgPeak;
 else if (startsWithWord("genePred",type)
      && !startsWith("encodeGencodeRaceFrags", tdb->track)) // SPECIAL CASE should fix in trackDb!
     cType = cfgGenePred;
 else if (sameWord("bedLogR",type)
      ||  sameWord("peptideMapping", type))
     cType = cfgBedScore;
 else if (startsWith("bed ", type) || startsWith("bigBed", type))
     {
     if (trackDbSetting(tdb, "bedFilter") != NULL)
            cType = cfgBedFilt;
     else
         {
         char *words[3];
         int wordCount = chopLine(cloneString( type), words);
-        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")))) 
+        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;
 
 	    // FIXME: UGLY SPECIAL CASE should be handled in trackDb!
 	    else if (startsWith("encodeGencodeIntron", tdb->track))
 		cType = cfgNone;
 	    }
 	}
     }
 else if(startsWith("chain",type))
     cType = cfgChain;
 else if (startsWith("bamWig", type))