2fb7a9ce7a4d1d9b6c3c2a571643bfa09ec37a9c
braney
  Thu Feb 12 14:48:24 2026 -0800
support static HTML for quickLiftChain track

diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c
index 717890f0fd5..03b20605484 100644
--- src/hg/hgc/hgc.c
+++ src/hg/hgc/hgc.c
@@ -3602,30 +3602,32 @@
     }
 }
 
 static void printOrigAssembly(struct trackDb *tdb)
 /* If this annotation has been lifted, print the original
  * freeze, as indicated by the "origAssembly" trackDb setting */
 {
 trackDbPrintOrigAssembly(tdb, database);
 }
 
 static char *getHtmlFromSelfOrParent(struct trackDb *tdb, char *liftDb)
 /* Get html from self or from parent if not in self. */
 {
 for (;tdb != NULL; tdb = tdb->parent)
     {
+    if (sameString(trackHubSkipHubName(tdb->track), "quickLiftChain"))
+        tdb->html = hFileContentsOrWarning(hHelpFile(trackHubSkipHubName(tdb->track)));
     if (liftDb && (tdb->html == NULL))
         tdb->html = getTrackHtml(liftDb, tdb->table);
     if (tdb->html != NULL && tdb->html[0] != 0)
         return tdb->html;
     }
 return NULL;
 }
 
 void printTrackHtml(struct trackDb *tdb)
 /* If there's some html associated with track print it out. Also print
  * last update time for data table and make a link
  * to the TB table schema page for this table. */
 {
 if (!isCustomTrack(tdb->track))
     {