f7804728e85be56bd858c33acd2b48bbc97549f1 braney Thu Dec 11 14:42:01 2025 -0800 don't put out info link for quickLift groups diff --git src/hg/hgTracks/hgTracks.c src/hg/hgTracks/hgTracks.c index cf62d9644d2..ecad37ee2fb 100644 --- src/hg/hgTracks/hgTracks.c +++ src/hg/hgTracks/hgTracks.c @@ -9709,31 +9709,31 @@ if (hubName) { if (cfgOptionBooleanDefault("groupDropdown", FALSE) && hub && hub->genomeList && hub->genomeList->next) { puts("<span style='font-size:13px'>Genomes: </span><select style='width:7em' name='db'>"); for (struct trackHubGenome *thg = hub->genomeList; thg != NULL; thg = thg->next) { if (!sameWord(thg->name, database)) printf("<option value='%s'>%s</option>\n", thg->name, thg->name); } puts("</select>"); } // visibility: hidden means that the element takes up space so the center alignment is not disturbed. - if (hub != NULL) + if ((hub != NULL) && !startsWith("QuickLift", group->label)) { if (hub->descriptionUrl == NULL) { hPrintf("<a title='The track hub authors have not provided a descriptionUrl with background " "information about this track hub. "); if (hub->email) hPrintf("The authors can be reached at %s. ", hub->email); hPrintf("This link leads to our documentation page about the descriptionUrl statement in hub.txt. "); hPrintf("' href='../goldenPath/help/hgTrackHubHelp.html#hub.txt' " "style='color:#FFF; font-size: 13px;' target=_blank>No Info</a>"); } else { hPrintf("<a title='Link to documentation about this track hub, provided by the track hub authors (not UCSC). "); if (hub->email)