aa43440d0d1e3b2bd6958b54cb812f854ab088cd markd Tue Jun 5 18:38:21 2012 -0700 change URL for IMAGE database to www.orfeomecollaboration.org diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c index 4fcd6ca..0fd2e89 100644 --- src/hg/hgc/hgc.c +++ src/hg/hgc/hgc.c @@ -10569,38 +10569,38 @@ printf("\" TARGET=_blank>RGD:%s</A>", rgdId); printf("<BR><B>GeneID: </B> %s ", GeneID); printf("<BR><B>Gene Name: </B> %s ", Name); printf("<BR><B>Note: </B> %s ", note); safef(query, sizeof(query), "select extAC from rgdGeneXref2 where rgdGeneId = '%s' and extDB='IMAGE'", rgdGeneId); sr = sqlGetResult(conn, query); row = sqlNextRow(sr); if (row != NULL) { char *image; image = cloneString(row[0]); printf("<BR><B>IMAGE Clone: </B>"); printf("<A HREF=\""); - printf("%s%s", "http://image.hudsonalpha.org/IQ/bin/singleCloneQuery?clone_id=", image); + printf("%s%s", "http://www.imageconsortium.org/IQ/bin/singleCloneQuery?clone_id=", image); printf("\" TARGET=_blank> %s</A>", image); row = sqlNextRow(sr); while (row != NULL) { image = cloneString(row[0]); printf(", <A HREF=\""); - printf("%s%s", "http://image.hudsonalpha.org/IQ/bin/singleCloneQuery?clone_id=", image); + printf("%s%s", "http://www.imageconsortium.org/IQ/bin/singleCloneQuery?clone_id=", image); printf("\" TARGET=_blank>%s</A>", image); row = sqlNextRow(sr); } } sqlFreeResult(&sr); safef(query, sizeof(query), "select extAC from rgdGeneXref2 where rgdGeneId = '%s' and extDB='MGC'", rgdGeneId); sr = sqlGetResult(conn, query); row = sqlNextRow(sr); if (row != NULL) { char *mgc; mgc = cloneString(row[0]); printf("<BR><B>MGC: </B>"); printf("<A HREF=\"");