7338fb10bb7ffdc0a75445a36cd128e6be593d36 braney Mon Feb 26 10:51:47 2024 -0800 fix a bunch of places that were printing out hub_#_db instead of just db diff --git src/hg/hgBlat/hgBlat.c src/hg/hgBlat/hgBlat.c index 210ae0f..3b76af2 100644 --- src/hg/hgBlat/hgBlat.c +++ src/hg/hgBlat/hgBlat.c @@ -570,31 +570,31 @@ printf("
");
if (!sameString(output, "psl no header"))
pslxWriteHead(stdout, qType, tType);
for (psl = pslList; psl != NULL; psl = psl->next)
pslTabOut(psl, stdout);
if (pslRawOut)
@@ -1466,31 +1466,31 @@
char *xType = NULL;
if (allGenomes)
{
db = database;
genome = organism;
}
else
getDbAndGenome(cart, &db, &genome, oldVars);
char *output = cgiOptionalString("output");
boolean isJson= sameWordOk(output, "json");
boolean isPslRaw= sameWordOk(output, "pslRaw");
if (!feelingLucky && !allGenomes && !isJson && !isPslRaw)
- cartWebStart(cart, db, "%s (%s) BLAT Results", trackHubSkipHubName(organism), db);
+ cartWebStart(cart, db, "%s (%s) BLAT Results", trackHubSkipHubName(organism), trackHubSkipHubName(db));
/* Load user sequence and figure out if it is DNA or protein. */
if (sameWord(type, "DNA"))
{
seqList = faSeqListFromMemText(seqLetters, TRUE);
uToT(seqList);
isTx = FALSE;
xType = "dna";
}
else if (sameWord(type, "translated RNA") || sameWord(type, "translated DNA"))
{
seqList = faSeqListFromMemText(seqLetters, TRUE);
uToT(seqList);
isTx = TRUE;
isTxTx = TRUE;