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

diff --git src/hg/lib/hubConnect.c src/hg/lib/hubConnect.c
index 99d34d9c490..1ad63ece3b3 100644
--- src/hg/lib/hubConnect.c
+++ src/hg/lib/hubConnect.c
@@ -524,30 +524,31 @@
     "longLabel %s Chain\n"
     "type bigChain %s\n"
     "bigDataUrl %s\n"
     "quickLiftUrl %s\n"
     "quickLiftDb %s\n"
     "otherTwoBitUrl %s\n";
 
 // a string to define trackDb for quickLift chain
 char *controlTdbString = 
     "shortLabel Alignment Differences\n"
     "longLabel Alignment Differences\n"
     "type bigQuickLiftChain %s\n"
     "chainType reverse\n"
     "bigDataUrl %s\n"
     "quickLiftUrl %s\n"
+    "quickLiftDb %s\n"
     "otherTwoBitUrl %s\n";
 
 static struct trackDb *makeQuickLiftChainTdb(struct trackHubGenome *hubGenome,  struct hubConnectStatus *hub)
 // make a trackDb entry for a quickLift chain
 {
 struct trackDb *tdb;
 
 AllocVar(tdb);
 
 char buffer[4096];
 safef(buffer, sizeof buffer, "hub_%d_quickLiftChain", hub->id);
 tdb->table = tdb->track = cloneString(buffer);
 char otherTwoBitFile[4096];
 hNibForChrom(hubGenome->quickLiftDb, NULL, otherTwoBitFile);
 safef(buffer, sizeof buffer, controlTdbString, hubGenome->quickLiftDb, hubGenome->quickLiftChain, hubGenome->quickLiftChain, hubGenome->quickLiftDb, otherTwoBitFile);