c4500309e004c1ccdcf8741930bba103e7cd8631
max
  Mon Mar 12 13:14:39 2012 -0700
trying to make necessary changes to all.joiner and .sql files for qa
diff --git src/hg/lib/t2gSequenceAnnot.sql src/hg/lib/t2gSequenceAnnot.sql
new file mode 100644
index 0000000..1a3afea
--- /dev/null
+++ src/hg/lib/t2gSequenceAnnot.sql
@@ -0,0 +1,13 @@
+#Text to Genome project sequence data table
+CREATE TABLE t2gSequence (
+    articleId bigint not null,	# identifier of the article where the sequence was found
+    fileId int not null,        # identifier of the file where the sequence was found
+    seqId bigint not null,	# unique identifier of this sequence within a file
+    fileDesc varchar(2000) not null, # description of file where sequence was found 
+    sequence longblob not null,	# sequence
+    snippet longblob not null,	# flanking characters around sequence in article
+    locations varchar(5000),	# comma-sep list of genomic locations where this sequence matches
+              #Indices
+    KEY seqIdIdx(seqId),
+    KEY artIdIdx(articleId)
+);