src/hg/lib/t2gSequence.sql 1.1

1.1 2010/05/20 18:29:08 hiram
initial format of text2Genome data tables
Index: src/hg/lib/t2gSequence.sql
===================================================================
RCS file: src/hg/lib/t2gSequence.sql
diff -N src/hg/lib/t2gSequence.sql
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/hg/lib/t2gSequence.sql	20 May 2010 18:29:08 -0000	1.1
@@ -0,0 +1,8 @@
+#Text to Genome project sequence data table
+CREATE TABLE t2gSequence (
+    pmcId bigint not null,	# PMC ID
+    seqId int not null,		# display ID
+    sequence blob not null,	# list of sequences
+              #Indices
+    KEY docIdIdx(pmcId)
+);