d74dbff02dfc62a46cdeee1f3be9b8a6bb0d3537 ccpowell Fri Aug 2 16:28:18 2019 -0700 Updating reactome pathways linkout, refs #23940 diff --git src/hg/hgGene/pathways.c src/hg/hgGene/pathways.c index a2032f9..27ef8ec 100644 --- src/hg/hgGene/pathways.c +++ src/hg/hgGene/pathways.c @@ -177,31 +177,31 @@ hPrintf( "
Protein %s (Reactome details) participates in the following event(s):

" , spID, spID); conn2= hAllocConn(database); sqlSafef(query2,sizeof(query2), "select eventID, eventDesc from proteome.spReactomeEvent where spID='%s'", spID); sr2 = sqlMustGetResult(conn2, query2); row2 = sqlNextRow(sr2); while (row2 != NULL) { eventID = row2[0]; eventDesc = row2[1]; hPrintf( - "%s %s
\n", + "%s %s
\n", eventID, eventID, eventDesc); row2 = sqlNextRow(sr2); } sqlFreeResult(&sr2); hFreeConn(&conn2); } } static void rgdPathwayLink(struct pathwayLink *pl, struct sqlConnection *conn, char *geneId) /* Print out bioCarta database link. */ { char query[512], **row; struct sqlResult *sr; char *rgdId = geneId;