4dc00f5856bc269c7fec878e93b210d7b885866a
braney
  Fri Mar 2 16:13:52 2012 -0800
more changes to otto-mate the OMIM load (#6943)
diff --git src/hg/lib/omimGeneSymbol.sql src/hg/lib/omimGeneSymbol.sql
new file mode 100644
index 0000000..34db407
--- /dev/null
+++ src/hg/lib/omimGeneSymbol.sql
@@ -0,0 +1,13 @@
+# omimGeneSymbol.sql was originally generated by the autoSql program, which also 
+# generated omimGeneSymbol.c and omimGeneSymbol.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#OMIM Gene Symbol
+CREATE TABLE omimGeneSymbol (
+    omimId int unsigned not null,	# OMIM ID
+    geneSymbol varchar(40) not null,	# gene symbol
+              #Indices
+    key omimId(omimId),
+    key geneSymbol(geneSymbol)
+);