485724bcdce8810dcf1b65755c97dbb3c39fa02a
braney
  Mon Aug 25 15:37:25 2025 -0700
give quickLiftChains there own methods in hgTracks and a special hgc
page

diff --git src/hg/hgTracks/simpleTracks.c src/hg/hgTracks/simpleTracks.c
index a7ea5e36605..ddc85e64f12 100644
--- src/hg/hgTracks/simpleTracks.c
+++ src/hg/hgTracks/simpleTracks.c
@@ -15023,30 +15023,34 @@
     {
     pslMethods(track, tdb, wordCount, words);
 
     // FIXME: registerTrackHandler doesn't accept wildcards, so this might be the only
     // way to get this done in a general way. If this was in loaded with registerTrackHandler
     // pslMethods would need the tdb object, which we don't have for these callbacks
     if (startsWith("pubs", track->track))
         pubsBlatPslMethods(track);
     }
 #ifdef NOTNOW
 else if (sameWord(type, "snake"))
     {
     snakeMethods(track, tdb, wordCount, words);
     }
 #endif
+else if (sameWord(type, "bigQuickLiftChain"))
+    {
+    quickLiftChainMethods(track, tdb, wordCount, words);
+    }
 else if (sameWord(type, "chain"))
     {
     chainMethods(track, tdb, wordCount, words);
     }
 else if (sameWord(type, "netAlign"))
     {
     netMethods(track);
     }
 else if (sameWord(type, "maf"))
     {
     mafMethods(track);
     }
 else if (sameWord(type, "bam"))
     {
     bamMethods(track);