src/hg/lib/yaleGencodeAssoc.sql 1.1

1.1 2010/04/30 21:23:38 braney
files to describe and load table that maps gencode id's to yale pseudogene id's
Index: src/hg/lib/yaleGencodeAssoc.sql
===================================================================
RCS file: src/hg/lib/yaleGencodeAssoc.sql
diff -N src/hg/lib/yaleGencodeAssoc.sql
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/hg/lib/yaleGencodeAssoc.sql	30 Apr 2010 21:23:38 -0000	1.1
@@ -0,0 +1,13 @@
+# yaleGencodeAssoc.sql was originally generated by the autoSql program, which also 
+# generated yaleGencodeAssoc.c and yaleGencodeAssoc.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#association of Yale pseudogenes with Gencode transcripts
+CREATE TABLE yaleGencodeAssoc (
+    transcript varchar(255) not null,	# Gencode transcript id
+    yaleId varchar(255) not null,	# Yale id
+    locus varchar(255) not null,	# Gencode locus id
+              #Indices
+    INDEX(transcript)
+);