a2c0a8eabeb1cc860b04688d176d4f309ca42d19 larrym Mon Apr 4 12:19:51 2011 -0700 add assemblyGeneSuggestTrack (used in fixing redmine #3483) diff --git src/hg/inc/suggest.h src/hg/inc/suggest.h index f0dfc98..53f38b9 100644 --- src/hg/inc/suggest.h +++ src/hg/inc/suggest.h @@ -1,16 +1,18 @@ /* code to support suggesting genes given a prefix typed by the user. */ #ifndef SUGGEST_H #define SUGGEST_H #include "common.h" #include "jksql.h" #include "hdb.h" -boolean connSupportsGeneSuggest(struct sqlConnection *conn); -// return true if this connection has tables to support gene autocompletion - boolean assemblySupportsGeneSuggest(char *database); // return true if this assembly has tables to support gene autocompletion +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. + + #endif /* SUGGEST_H */