src/hg/lib/t2gSequence.sql 1.2

1.2 2010/05/26 18:23:29 hiram
new version now with seqIds in t2g.sql
Index: src/hg/lib/t2gSequence.sql
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/t2gSequence.sql,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 1000000 -r1.1 -r1.2
--- src/hg/lib/t2gSequence.sql	20 May 2010 18:29:08 -0000	1.1
+++ src/hg/lib/t2gSequence.sql	26 May 2010 18:23:29 -0000	1.2
@@ -1,8 +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
+    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)
 );