src/hg/lib/megablastInfo.sql 1.1

1.1 2009/11/09 22:24:39 holmes
Adding megablast track
Index: src/hg/lib/megablastInfo.sql
===================================================================
RCS file: src/hg/lib/megablastInfo.sql
diff -N src/hg/lib/megablastInfo.sql
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/hg/lib/megablastInfo.sql	9 Nov 2009 22:24:39 -0000	1.1
@@ -0,0 +1,20 @@
+# megablastInfo.sql was originally generated by the autoSql program, which also 
+# generated megablastInfo.c and megablastInfo.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#Conserved Domain Description
+CREATE TABLE megablastInfo (
+    chrom varchar(255) not null,	# chromosome
+    chromStart int unsigned not null,	# Start position in chromosome
+    chromEnd int unsigned not null,	# End position in chromosome
+    name varchar(255) not null,	# hit name
+    score int unsigned not null,	# Score from 900-1000.  1000 is best
+    strand char(1) not null,	# Value should be + or -
+    evalue double not null,	# Expect value
+    percentident int unsigned not null,	# Data source
+    fullname varchar(255) not null,	# hit name
+    taxid int unsigned not null,	# Data source
+              #Indices
+    PRIMARY KEY(chrom,chromStart,chromEnd,name)
+);