1b4f89e8c61f36eb897687a47f8fa0971823e3d1
braney
  Thu Feb 12 13:12:17 2026 -0800
create placeholder HTML for Alignment Differences track refs #36942

diff --git src/hg/lib/hubConnect.c src/hg/lib/hubConnect.c
index 1ad63ece3b3..99d34d9c490 100644
--- src/hg/lib/hubConnect.c
+++ src/hg/lib/hubConnect.c
@@ -524,31 +524,30 @@
     "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);