src/hg/lib/snpArrayIlluminaHuman660W_Quad.sql 1.1
1.1 2009/12/09 18:53:09 fanhsu
Added 2 new tables for Illumina SNP array chips.
Index: src/hg/lib/snpArrayIlluminaHuman660W_Quad.sql
===================================================================
RCS file: src/hg/lib/snpArrayIlluminaHuman660W_Quad.sql
diff -N src/hg/lib/snpArrayIlluminaHuman660W_Quad.sql
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/hg/lib/snpArrayIlluminaHuman660W_Quad.sql 9 Dec 2009 18:53:09 -0000 1.1
@@ -0,0 +1,13 @@
+CREATE TABLE snpArrayIlluminaHuman660W_Quad (
+ bin int(10) unsigned NOT NULL default '0',
+ chrom varchar(255) NOT NULL default '',
+ chromStart int(10) unsigned NOT NULL default '0',
+ chromEnd int(10) unsigned NOT NULL default '0',
+ name varchar(255) NOT NULL default '',
+ score int(10) unsigned NOT NULL default '0',
+ strand char(1) NOT NULL default '',
+ observed blob NOT NULL,
+ KEY name (name),
+ KEY chrom (chrom,bin)
+) TYPE=MyISAM;
+