965d1048e8671fb3a5630fe75deb88f24df386d7
kate
  Wed Aug 13 15:01:59 2014 -0700
Expand schema for GTex.  Create tissue short names and use these in sample and data tables. refs #13504
diff --git src/hg/lib/gtexSample.sql src/hg/lib/gtexSample.sql
new file mode 100644
index 0000000..ccd5311
--- /dev/null
+++ src/hg/lib/gtexSample.sql
@@ -0,0 +1,13 @@
+# gtexSample.sql was originally generated by the autoSql program, which also 
+# generated gtexSample.c and gtexSample.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#GTEx sample description
+CREATE TABLE gtexSample (
+    name varchar(255) not null,	# GTEX sample identifier
+    tissue varchar(255) not null,	# Tissue name
+    donor varchar(255) not null,	# GTEX subject identifier
+              #Indices
+    PRIMARY KEY(name)
+);