src/hg/lib/snpArrayIlluminaHumanCytoSNP_12.sql 1.1

1.1 2009/12/09 18:54:27 fanhsu
Added 1 table for an Illumina SNP array chip.
Index: src/hg/lib/snpArrayIlluminaHumanCytoSNP_12.sql
===================================================================
RCS file: src/hg/lib/snpArrayIlluminaHumanCytoSNP_12.sql
diff -N src/hg/lib/snpArrayIlluminaHumanCytoSNP_12.sql
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/hg/lib/snpArrayIlluminaHumanCytoSNP_12.sql	9 Dec 2009 18:54:27 -0000	1.1
@@ -0,0 +1,13 @@
+CREATE TABLE snpArrayIlluminaHumanCytoSNP_12 (
+  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;
+