89ab8ae5fb747465c8f9c218c8556750033e2061
jcasper
  Wed May 16 20:02:03 2018 -0700
DECIPHER CNVs track handles new format, also release of SNVs track, refs #21104

diff --git src/hg/lib/decipherSnvsRaw.sql src/hg/lib/decipherSnvsRaw.sql
new file mode 100644
index 0000000..04d14ec
--- /dev/null
+++ src/hg/lib/decipherSnvsRaw.sql
@@ -0,0 +1,17 @@
+CREATE TABLE decipherRaw (
+  id     varchar(40),
+  chr    varchar(40),
+  start  int(10),
+  end    int(10),
+  refAllele text,
+  altAllele text,
+  transcript text,
+  gene text,
+  genotype text,
+  inheritance text,
+  pathogenicity text,
+  contribution text,
+  phenotypes text,
+  key id (id)
+) ENGINE=MyISAM;
+