80ef21f5a1673009526243456bd698ba51ade5fc
chinhli
  Mon Apr 22 11:39:59 2013 -0700
redmone #10496 Adding ensemblLift.sql for descrition purpose.
diff --git src/hg/lib/ensemblLift.sql src/hg/lib/ensemblLift.sql
new file mode 100644
index 0000000..c3aeb4c
--- /dev/null
+++ src/hg/lib/ensemblLift.sql
@@ -0,0 +1,7 @@
+# UCSC offset to Ensembl coordinates
+CREATE TABLE ensemblLift (
+    chrom varchar(255) not null,      # Ensembl chromosome name
+    offset int unsigned not null,     # offset to add to UCSC position 
+              #Indices
+    PRIMARY KEY(chrom(15))
+);