504d304176a1396076a1ecb0807d407eb4db6068
hiram
  Tue Aug 23 10:54:52 2011 -0700
cross reference table for ensembl gene biotype (source) from GFF file
diff --git src/hg/lib/ensemblSource.sql src/hg/lib/ensemblSource.sql
new file mode 100644
index 0000000..65bc59f
--- /dev/null
+++ src/hg/lib/ensemblSource.sql
@@ -0,0 +1,7 @@
+#Map Ensembl gene transcript ID to source category
+CREATE TABLE ensemblSource (
+    name varchar(255) not null,	# Same as name field in ensGene
+    source varchar(255) not null,	# source category
+              #Indices
+    PRIMARY KEY(name(15))
+);