7f33fb42a1fb58a02a3f798e56332e5beac65133
max
  Sat Mar 17 13:21:09 2012 -0700
renaming all publications tracks tables to pubsXXXX
diff --git src/hg/lib/pubsSequence.sql src/hg/lib/pubsSequence.sql
new file mode 100644
index 0000000..9ac823d
--- /dev/null
+++ src/hg/lib/pubsSequence.sql
@@ -0,0 +1,8 @@
+#Text to Genome project sequence data table
+CREATE TABLE t2gSequence (
+    pmcId bigint not null,	# PubMedCentral ID of article
+    seqId int not null,		# number of sequence in article
+    sequence blob not null,	# sequences
+              #Indices
+    KEY docIdIdx(pmcId)
+);