3589900a038034a6c2112c308946f67889c11170 braney Fri May 15 11:40:30 2020 -0700 fix URL to Comparative Toxicogenomics Database diff --git src/hg/hgGene/ctd.c src/hg/hgGene/ctd.c index 25129ab..c638e16 100644 --- src/hg/hgGene/ctd.c +++ src/hg/hgGene/ctd.c @@ -92,31 +92,31 @@ row = sqlNextRow(sr); chemCnt = 0; while (row != NULL) { chemId = cloneString(row[0]); chemName = cloneString(row[1]); if (first) { printf("<B>The following chemicals interact with this gene</B>\n"); printf("<UL>"); first = 0; } - printf("<LI><A HREF=\"http://ctd.mdibl.org/detail.go?type=chem&acc=%s\" target=_blank>", + printf("<LI><A HREF=\"http://ctdbase.org/detail.go?type=chem&acc=%s\" target=_blank>", chemId); printf("%s</A>\n", chemId); printf("%s\n", chemName); printf("</LI>"); chemCnt++; row = sqlNextRow(sr); /* Initially, just show no more than 10 items */ if ((!showCompleteCtdList) && (chemCnt >= 10) && (row != NULL)) { chemCnt++; break; } } sqlFreeResult(&sr);