2fa2ae0051bcf6ed6c3ca627ec5b700c828e9d04 max Wed Feb 10 04:59:15 2021 -0800 fixing links in new alt/fix notes in hgBlat, found by Gerardo, refs #26918 diff --git src/hg/hgBlat/hgBlat.c src/hg/hgBlat/hgBlat.c index b136b20..c98a39d 100644 --- src/hg/hgBlat/hgBlat.c +++ src/hg/hgBlat/hgBlat.c @@ -642,37 +642,37 @@ printf("%s",psl->qName); spaceOut(stdout, maxQChromNameSize - strlen(psl->qName)); printf(" %5d %5d %5d %5d %5.1f%% ", pslScore(psl), psl->qStart+1, psl->qEnd, psl->qSize, 100.0 - pslCalcMilliBad(psl, TRUE) * 0.1); printf("%s",psl->tName); spaceOut(stdout, maxTChromNameSize - strlen(psl->tName)); printf(" %-2s %9d %9d %6d", psl->strand, psl->tStart+1, psl->tEnd, psl->tEnd - psl->tStart); // if you modify this, also modify hgPcr.c:doQuery, which implements a similar feature char *seq = psl->tName; if (endsWith(seq, "_fix")) - printf(" What is chrom_fix?"); + printf(" What is chrom_fix?"); else if (endsWith(seq, "_alt")) - printf(" What is chrom_alt?"); + printf(" What is chrom_alt?"); else if (endsWith(seq, "_random")) - printf(" What is chrom_random?"); + printf(" What is chrom_random?"); else if (startsWith(seq, "chrUn")) - printf(" What is a chrUn sequence?"); + printf(" What is a chrUn sequence?"); printf("\n"); } printf("\n"); webNewSection("Help"); puts("
\n"); puts("\n"); } pslFreeList(&pslList); } void trimUniq(bioSeq *seqList) /* Check that all seq's in list have a unique name. Try and * abbreviate longer sequence names. */