7f33fb42a1fb58a02a3f798e56332e5beac65133 max Sat Mar 17 13:21:09 2012 -0700 renaming all publications tracks tables to pubsXXXX diff --git src/hg/lib/t2gSequenceAnnot.sql src/hg/lib/t2gSequenceAnnot.sql deleted file mode 100644 index 1a3afea..0000000 --- src/hg/lib/t2gSequenceAnnot.sql +++ /dev/null @@ -1,13 +0,0 @@ -#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) -);