src/hg/lib/jaxAllelePheno.sql 1.1

1.1 2009/07/07 20:33:39 angie
Meant to check these in a long time ago (thanks Brooke!).
Index: src/hg/lib/jaxAllelePheno.sql
===================================================================
RCS file: src/hg/lib/jaxAllelePheno.sql
diff -N src/hg/lib/jaxAllelePheno.sql
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/hg/lib/jaxAllelePheno.sql	7 Jul 2009 20:33:39 -0000	1.1
@@ -0,0 +1,15 @@
+# jaxAllelePheno.sql was originally generated by the autoSql program, which also 
+# generated jaxAllelePheno.c and jaxAllelePheno.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#MGI Allele/Phenotype relationships.
+CREATE TABLE jaxAllelePheno (
+    allele varchar(255) not null,	# Allele transcript name.
+    transcript varchar(255) not null,	# Transcript name (used by phenotype table).
+    phenotypes longblob not null,	# Comma-separated list of phenotypes for this allele.
+              #Indices
+    # Not a primary key because there are case-sensitive differences...
+    KEY(allele),
+    INDEX(transcript)
+);