479ae32f7e18e0656d4708513cceb9c476e0b01c braney Fri Aug 9 11:57:22 2019 -0700 change link to GO diff --git src/hg/hgGene/go.c src/hg/hgGene/go.c index 8733071..bfd9cf0 100644 --- src/hg/hgGene/go.c +++ src/hg/hgGene/go.c @@ -77,31 +77,31 @@ " where goaPart.dbObjectId = '%s'" " and goaPart.goId = term.acc" " and goaPart.aspect = '%s'" , acc, aspects[aspectIx]); sr = sqlGetResult(goConn, query); while ((row = sqlNextRow(sr)) != NULL) { char *goID = row[0]; char *goTermName = row[1]; if (!hasFirst) { hPrintf("<B>%s:</B><BR>", aspectNames[aspectIx]); hasFirst = TRUE; } hPrintf("<A HREF = \""); - hPrintf("http://amigo1.geneontology.org/cgi-bin/amigo/go.cgi?view=details&search_constraint=terms&depth=0&query=%s", goID); + hPrintf("http://amigo.geneontology.org/amigo/term/%s", goID); hPrintf("\" TARGET=_blank>%s</A> %s<BR>\n", goID, goTermName); } if (hasFirst) hPrintf("<BR>"); sqlFreeResult(&sr); } hFreeConn(&goConn); } struct section *goSection(struct sqlConnection *conn, struct hash *sectionRa) /* Create GO annotations section. */ { struct section *section = sectionNew(sectionRa, "go"); section->exists = goExists;