76d3f3b7c989c8c4f7be04e6893638ecfddba0f0
max
  Thu Jan 23 12:26:31 2014 -0800
removing files after code review, refs #12524
diff --git src/hg/lib/pubsBingSequenceAnnot.sql src/hg/lib/pubsBingSequenceAnnot.sql
deleted file mode 100644
index 1762817..0000000
--- src/hg/lib/pubsBingSequenceAnnot.sql
+++ /dev/null
@@ -1,16 +0,0 @@
-#publications track sequence data table
-CREATE TABLE pubsBingSequenceAnnot (
-    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
-    annotId bigint not null,    # articleId(10)+fileId(3)+seqId(5), refd by pubsSequenceAnnot
-    fileDesc varchar(2000) not null, # description of file where sequence was found 
-    fileUrl varchar(2000) not null, # url 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 annotIdx(annotId),
-    KEY artIdIdx(articleId)
-);