a67410efc5799d4df0cf424a5bd5b3c9dd5ab7f7
kate
  Thu Feb 4 20:10:09 2016 -0800
Load GTEx V6 gene table in hg19. refs #15645

diff --git src/hg/lib/gtexTranscript.sql src/hg/lib/gtexTranscript.sql
new file mode 100644
index 0000000..ebeadde
--- /dev/null
+++ src/hg/lib/gtexTranscript.sql
@@ -0,0 +1,12 @@
+# gtexTranscript.sql was originally generated by the autoSql program, which also 
+# generated gtexTranscript.c and gtexTranscript.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#GTEx Transcript
+CREATE TABLE gtexTranscript (
+    geneId varchar(255) not null,	# Ensembl Gene ID
+    transcriptName varchar(255) not null,	# Ensembl Transcript Name
+              #Indices
+    PRIMARY KEY(geneId)
+);