a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/suggest.c src/hg/lib/suggest.c index 51b4109..8314ecb 100644 --- src/hg/lib/suggest.c +++ src/hg/lib/suggest.c @@ -1,43 +1,42 @@ /* code to support suggesting genes given a prefix typed by the user. */ #include "suggest.h" -static char const rcsid[] = "$Id: suggest.c,v 1.3 2010/02/06 03:21:00 larrym Exp $"; char *connGeneSuggestTable(struct sqlConnection *conn) // return name of gene suggest table if this connection has tables to support gene autocompletion, NULL otherwise { if(sqlTableExists(conn, "knownCanonical")) return "knownCanonical"; else if(sqlTableExists(conn, "refGene")) return "refGene"; else return NULL; } boolean assemblySupportsGeneSuggest(char *database) // return true if this assembly has tables to support gene autocompletion { struct sqlConnection *conn = hAllocConn(database); char *table = connGeneSuggestTable(conn); hFreeConn(&conn); return table != NULL; } char *assemblyGeneSuggestTrack(char *database) // return name of gene suggest track if this assembly has tables to support gene autocompletion, NULL otherwise // Do NOT free returned string. { struct sqlConnection *conn = hAllocConn(database); char *table = connGeneSuggestTable(conn); hFreeConn(&conn); if(table != NULL) { if(sameString(table, "knownCanonical")) return "knownGene"; else return "refGene"; } else return NULL; }