f92a444ad6ba92b1190c76629b18d219e1809c7c max Tue Feb 9 07:49:02 2021 -0800 fixing a spurious linebreak in hgBlat that i introduced myself, refs #26918 diff --git src/hg/hgBlat/hgBlat.c src/hg/hgBlat/hgBlat.c index 275f2dd..b136b20 100644 --- src/hg/hgBlat/hgBlat.c +++ src/hg/hgBlat/hgBlat.c @@ -649,31 +649,31 @@ 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?"); else if (endsWith(seq, "_alt")) printf(" What is chrom_alt?"); else if (endsWith(seq, "_random")) printf(" What is chrom_random?"); else if (startsWith(seq, "chrUn")) printf(" What is a chrUn sequence?"); - puts("\n"); + printf("\n"); } printf("\n"); webNewSection("Help"); puts("

Missing a match?
"); puts("What is chr_alt & chr_fix?

\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. */ {