src/hg/lib/pgPolyphenPred.sql 1.1

1.1 2010/03/08 17:45:40 giardine
Adding phenotype tables for pgSnp track hgc clicks
Index: src/hg/lib/pgPolyphenPred.sql
===================================================================
RCS file: src/hg/lib/pgPolyphenPred.sql
diff -N src/hg/lib/pgPolyphenPred.sql
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/hg/lib/pgPolyphenPred.sql	8 Mar 2010 17:45:40 -0000	1.1
@@ -0,0 +1,17 @@
+# pgPolyphenPred.sql was originally generated by the autoSql program, which also 
+# generated pgPolyphenPred.c and pgPolyphenPred.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#polyphen predictions for pgSnp tracks
+CREATE TABLE pgPolyphenPred (
+    chrom varchar(255),	# Chromosome
+    chromStart int unsigned,	# Start position in chrom
+    chromEnd int unsigned,	# End position in chrom
+    prediction varchar(255),	# polyphens prediction, damaging, benign,...
+    basedOn varchar(255),	# prediction basis
+    geneName varchar(255),	# gene/protein name
+    aaChange varchar(255),	# amino acid change
+              #Indices
+    INDEX(chrom(20), chromStart)
+);