174772ef1008f0e0fd1f43c67e10c753dbb05cde
fanhsu
  Tue Aug 3 09:41:02 2010 -0700
Added rdmr track.
diff --git src/hg/lib/rdmrRaw.sql src/hg/lib/rdmrRaw.sql
new file mode 100644
index 0000000..e3efcc5
--- /dev/null
+++ src/hg/lib/rdmrRaw.sql
@@ -0,0 +1,15 @@
+CREATE TABLE rdmrRaw (
+    chrom varchar(255) not null,        # Chromosome gene is on
+    chromStart int unsigned not null,   # Start position in chromosome
+    chromEnd int unsigned not null,     # End position in chromosome
+    fibroblast float not null,		# fibroblast
+    iPS float not null,			# iPS 
+    absArea float not null,		# absArea 
+    gene varchar(40),			# gene
+    dist2gene int,			# dist2gene
+    relation2gene varchar(40),		# relation2gene
+    dist2island int,			# dist2island
+    relation2island varchar(40),        # relation2island
+    fdr float,				# fdr
+    KEY(gene)
+);