4f0b12aadc3153194c9b4c81c70adc86d621ff2b
braney
  Fri Oct 10 12:08:26 2025 -0700
support genePred in quickLift

diff --git src/hg/lib/trackHub.c src/hg/lib/trackHub.c
index 754c3946d2c..ceb28fff2b6 100644
--- src/hg/lib/trackHub.c
+++ src/hg/lib/trackHub.c
@@ -1529,32 +1529,32 @@
 "omimLocation",
 "omimAvSnp",
 "ncbiRefSeq",
 "clinvar",
 "clinvarSubLolly",
 "pubsBlat",
 "pubsMarkerBand",
 "pubsMarkerSnp",
 "pubsMarkerGene",
 //"gtexGeneV8",
 };
 
 static boolean isVetted(char *track)
 /* Is this a track that's been tested with quickLift?  If not we don't want to do the special name handling on the track. */
 {
-if (startsWith("wgEncodeGencode", track))
-    return TRUE;
+//if (startsWith("wgEncodeGencode", track))
+    //return TRUE;
 static bool inited = FALSE;
 static struct hash *vettedHash = NULL;
 
 if (!inited)
     {
     vettedHash = newHash(10);
 
     int ii;
     int len = sizeof(vettedTracks) / sizeof(char *);
 
     for(ii = 0; ii < len; ii++)
         hashStore(vettedHash, vettedTracks[ii]);
     }
 
 return hashLookup(vettedHash, track) != NULL;