92403f62ccb18b27867f9220c679b31e4336d8a6
fanhsu
  Mon Oct 25 15:13:52 2010 -0700
Checking in .sql for RGD Genes build.  Issue #29.
diff --git src/hg/lib/rgdGene2Pep.sql src/hg/lib/rgdGene2Pep.sql
new file mode 100644
index 0000000..e6917fa
--- /dev/null
+++ src/hg/lib/rgdGene2Pep.sql
@@ -0,0 +1,7 @@
+# This table store protein sequences of the RGD Genes track entries
+CREATE TABLE rgdGene2Pep (
+  name varchar(255) NOT NULL default '',	# RGD Gene entry ID
+  seq longblob NOT NULL,			# protein sequence of the corresponding RGD Gene
+  KEY  (name(32))
+) TYPE=MyISAM;
+