0dc3dba8c97201b69523bbcf01b4c19b17fce05a braney Fri Oct 10 13:09:38 2025 -0700 ongoing work on quickLift diff --git src/hg/lib/hubConnect.c src/hg/lib/hubConnect.c index 2b8026e750a..6684f034b4d 100644 --- src/hg/lib/hubConnect.c +++ src/hg/lib/hubConnect.c @@ -518,52 +518,52 @@ } } // a string to define trackDb for quickLift chain char *chainTdbString = "shortLabel %s Chain\n" "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 Warnings %s\n" - "longLabel Warnings %s\n" + "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->quickLiftDb, hubGenome->quickLiftDb, hubGenome->quickLiftChain, hubGenome->quickLiftChain, hubGenome->quickLiftDb, otherTwoBitFile); +safef(buffer, sizeof buffer, controlTdbString, hubGenome->quickLiftDb, hubGenome->quickLiftChain, hubGenome->quickLiftChain, hubGenome->quickLiftDb, otherTwoBitFile); tdb->settings = cloneString(buffer); tdb->settingsHash = trackDbSettingsFromString(tdb, buffer); trackDbFieldsFromSettings(tdb); tdb->visibility = tvDense; return tdb; } static struct trackDb *fixForQuickLift(struct trackDb *tdbList, struct trackHubGenome *hubGenome, struct hubConnectStatus *hub) // assign a quickLift chain to the tdbList and make a trackDb entry for the chain. { assignQuickLift(tdbList, hubGenome->quickLiftChain, hub->trackHub->defaultDb); struct trackDb *quickLiftTdb = makeQuickLiftChainTdb(hubGenome, hub); quickLiftTdb->grp = tdbList->grp;