d13d43d7ea0b2326b20a817ce4b11d9ca14bb67c
braney
  Fri Dec 19 13:31:57 2014 -0800
strip off the name in a few places in hgBlat
diff --git src/hg/hgBlat/hgBlat.c src/hg/hgBlat/hgBlat.c
index 876187d..b4fe4f1 100644
--- src/hg/hgBlat/hgBlat.c
+++ src/hg/hgBlat/hgBlat.c
@@ -323,31 +323,31 @@
     slSort(&pslList, pslCmpTargetScore);
     }
 else
     {
     slSort(&pslList, pslCmpQueryScore);
     }
 if(feelingLucky)
     {
     /* If we found something jump browser to there. */
     if(slCount(pslList) > 0)
 	printLuckyRedirect(browserUrl, pslList, database, pslName, faName, uiState, unhideTrack);
     /* Otherwise call ourselves again not feeling lucky to print empty 
        results. */
     else 
 	{
-	cartWebStart(cart, database, "%s BLAT Results", organism);
+	cartWebStart(cart, database, "%s BLAT Results", trackHubSkipHubName(organism));
 	showAliPlaces(pslName, faName, database, qType, tType, organism, FALSE);
 	cartWebEnd();
 	}
     }
 else if (pslOut)
     {
     printf("<TT><PRE>");
     if (!sameString(output, "psl no header"))
 	pslxWriteHead(stdout, qType, tType);
     for (psl = pslList; psl != NULL; psl = psl->next)
 	pslTabOut(psl, stdout);
     printf("</PRE></TT>");
     }
 else
     {
@@ -498,31 +498,31 @@
 char *seqLetters = cloneString(userSeq);
 struct serverTable *serve;
 int conn;
 int oneSize, totalSize = 0, seqCount = 0;
 boolean isTx = FALSE;
 boolean isTxTx = FALSE;
 boolean txTxBoth = FALSE;
 struct gfOutput *gvo;
 boolean qIsProt = FALSE;
 enum gfType qType, tType;
 struct hash *tFileCache = gfFileCacheNew();
 boolean feelingLucky = cgiBoolean("Lucky");
 
 getDbAndGenome(cart, &db, &genome, oldVars);
 if(!feelingLucky)
-    cartWebStart(cart, db, "%s BLAT Results", organism);
+    cartWebStart(cart, db, "%s BLAT Results",  trackHubSkipHubName(organism));
 /* Load user sequence and figure out if it is DNA or protein. */
 if (sameWord(type, "DNA"))
     {
     seqList = faSeqListFromMemText(seqLetters, TRUE);
     uToT(seqList);
     isTx = FALSE;
     }
 else if (sameWord(type, "translated RNA") || sameWord(type, "translated DNA"))
     {
     seqList = faSeqListFromMemText(seqLetters, TRUE);
     uToT(seqList);
     isTx = TRUE;
     isTxTx = TRUE;
     txTxBoth = sameWord(type, "translated DNA");
     }