80cbc1250297569516e0b680bab0d22388a1132b galt Wed Jan 13 11:36:13 2016 -0800 Fixes problem with link. The variable had gotten renamed from singleHaplo which is confusing, to singleAltHaplo which is clearer. diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c index 131fae0..d2fc799 100644 --- src/hg/hgc/hgc.c +++ src/hg/hgc/hgc.c @@ -4058,31 +4058,31 @@ char *bigImagePath = trackDbSettingClosestToHome(tdb, ITEM_BIG_IMAGE_PATH); char *bothWords[2]; int shouldBeTwo = chopLine(imagePath, bothWords); if (shouldBeTwo != 2) errAbort("itemImagePath setting for %s track incorrect. Needs to be \"itemImagePath \".", tdb->track); printf("


\n", bothWords[0], item, bothWords[1]); shouldBeTwo = chopLine(bigImagePath, bothWords); if (shouldBeTwo != 2) errAbort("bigItemImagePath setting for %s track incorrect. Needs to be \"itemImagePath \".", tdb->track); printf("Download Original Image
\n", bothWords[0], item, bothWords[1]); } if (sameString(tdb->table,"altLocations") && (!strchr(item,':'))) { char *hgsid = cartSessionId(cart); - printf("Show this alternate haplotype placed on its chromosome
\n", hgsid, item); + printf("Show this alternate haplotype placed on its chromosome
\n", hgsid, item); } printTrackHtml(tdb); freez(&dupe); hFreeConn(&conn); } void genericClickHandler(struct trackDb *tdb, char *item, char *itemForUrl) /* Put up generic track info */ { #ifdef OLD /* Called now by cartWebStart... */ jsIncludeFile("jquery.js", NULL); jsIncludeFile("utils.js",NULL); #endif /* OLD */ genericClickHandlerPlus(tdb, item, itemForUrl, NULL);