63164243390df77a62fd47d5aeafbe01444576be galt Thu May 15 11:42:51 2025 -0700 Fixes bug found by QA for show ali in window link refs #32750 diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c index 532bccb1807..1fb1e6b4a3a 100644 --- src/hg/hgc/hgc.c +++ src/hg/hgc/hgc.c @@ -7406,31 +7406,31 @@ printAlignments(pslList, start, "htcUserAli", "user", item); pslFreeList(&pslList); printf("</div>\n"); printf("<div id=hgUsualPslShowAll style='display: none'>\n"); // get hidden rest of alignments. pslxFileOpen(pslName, &qt, &tt, &lf); isProt = (qt == gftProt); while ((psl = pslNext(lf)) != NULL) { slAddHead(&pslList, psl); } slSort(&pslList, pslCmpQueryScore); lineFileClose(&lf); -printAlignments(pslList, start, "htcUserAli", "user", ""); +printAlignments(pslList, start, "htcUserAli", "user", item); pslFreeList(&pslList); printf("<BR>\n"); printf("Input Sequences:<BR>\n"); printf("<textarea rows='8' cols='60' readonly>\n"); struct dnaSeq *oSeq, *oSeqList = faReadAllSeq(faName, !isProt); for (oSeq = oSeqList; oSeq != NULL; oSeq = oSeq->next) { printf(">%s\n",oSeq->name); printf("%s\n",oSeq->dna); printf("\n"); } printf("</textarea>\n"); printf("</div>\n");