src/hg/inc/suggest.h 1.1
1.1 2010/02/06 03:15:04 larrym
code to support suggesting genes given a prefix typed by the user
Index: src/hg/inc/suggest.h
===================================================================
RCS file: src/hg/inc/suggest.h
diff -N src/hg/inc/suggest.h
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/hg/inc/suggest.h 6 Feb 2010 03:15:04 -0000 1.1
@@ -0,0 +1,16 @@
+/* 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
+
+#endif /* SUGGEST_H */