c2448899348ab39f4f5fdc5ad711ccad5443c6cd
lrnassar
Mon Aug 19 18:16:08 2024 -0700
Feedback on wording from CR, refs #34236
diff --git src/hg/hgBlat/hgBlat.c src/hg/hgBlat/hgBlat.c
index ebbbe84..8c96e06 100644
--- src/hg/hgBlat/hgBlat.c
+++ src/hg/hgBlat/hgBlat.c
@@ -1702,35 +1702,35 @@
warn("More than %d input sequences, stopping at %s
(see also: cgi-bin/hg.conf hgBlat.maxSequenceCount setting).",
maxSeqCount, seq->name);
break;
}
if (oneSize > maxSingleSize)
{
warn("Sequence %s is %d letters long (max is %d), skipping",
seq->name, oneSize, maxSingleSize);
continue;
}
if (oneSize < minSuggested)
{
warn("Warning: Sequence %s is only %d letters long (%d is the recommended minimum).
"
"To search for short sequences in the browser window, use the Short Sequence Match track. "
"You can also use our commandline tool findMotifs "
- "(see utilities download page) to "
+ "(see the utilities download page) to "
"search for sequences on the entire genome.
"
"For primers, you can use the In-silico PCR tool. In-silico PCR can search the entire genome or a set of "
"transcripts. In the latter case, it can find matches that straddle exon/intron boundaries.
"
- "Contact us for additional help using BLAT or its related tools: genome@soe.ucsc.edu",
+ "Contact us for additional help using BLAT or its related tools.",
seq->name, oneSize, minSuggested, cartSessionVarName(), cartSessionId(cart), cartSessionVarName(), cartSessionId(cart));
// we could use "continue;" here to actually enforce skipping,
// but let's give the short sequence a chance, it might work.
// minimum possible length = tileSize+stepSize, so mpl=16 for dna stepSize=5, mpl=10 for protein.
if (qIsProt && oneSize < 1) // protein does not tolerate oneSize==0
continue;
}
totalSize += oneSize;
if (totalSize > maxTotalSize)
{
warn("Sequence %s would take us over the %d letter limit, stopping here.",
seq->name, maxTotalSize);
break;
}