7f734c2f4001eb8fc3738de7cabc0b578b0bfbc7
braney
Fri Aug 9 11:04:43 2019 -0700
Revert "Fixing GO subSection links, refs #23939"
This reverts commit aab7eb309928e1ffedf18e8cf017dab5c86cfc08.
diff --git src/hg/hgGene/go.c src/hg/hgGene/go.c
index 290a929..8733071 100644
--- src/hg/hgGene/go.c
+++ src/hg/hgGene/go.c
@@ -71,74 +71,38 @@
" and %s.fbGo.aspect = '%s'",
database, database, acc, database, database, aspects[aspectIx]);
else
sqlSafef(query, sizeof(query),
"select term.acc,term.name"
" from goaPart,term"
" 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("good, %s:
", aspectNames[aspectIx]);
- hasFirst = TRUE;
- }
- if ( strcmp(aspectNames[aspectIx], "Molecular Function") == 0)
- {
- hPrintf("%s %s
\n", goID, goTermName);
- }
- else if ( strcmp(aspectNames[aspectIx], "Biological Process") == 0)
- {
- hPrintf("%s %s
\n", goID, goTermName);
- }
- else if ( strcmp(aspectNames[aspectIx], "Cellular Component") == 0)
- {
- hPrintf("%s %s
\n", goID, goTermName);
- } */
if (!hasFirst)
{
- hPrintf("good, %s:
", aspectNames[aspectIx]);
+ hPrintf("%s:
", aspectNames[aspectIx]);
hasFirst = TRUE;
}
hPrintf("%s %s
\n", goID, goTermName);
-
}
if (hasFirst)
hPrintf("
");
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;
section->print = goPrint;