95efc27edf24bba8d0c7e53d2ef4aead59982826
braney
  Mon Jun 15 18:29:39 2020 -0700
Merging in our gencode merge code to master branch

diff --git src/hg/lib/gencodeTranscriptionSupportLevel.sql src/hg/lib/gencodeTranscriptionSupportLevel.sql
new file mode 100644
index 0000000..e69cef4
--- /dev/null
+++ src/hg/lib/gencodeTranscriptionSupportLevel.sql
@@ -0,0 +1,12 @@
+# gencodeTranscriptionSupportLevel.sql was originally generated by the autoSql program, which also 
+# generated gencodeTranscriptionSupportLevel.c and gencodeTranscriptionSupportLevel.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#GENCODE transcription support level, computed from primary data
+CREATE TABLE gencodeTranscriptionSupportLevel (
+    transcriptId varchar(255) not null,	# GENCODE transcript identifier
+    level varchar(255) not null,	# support level, tsl1 is strongest support, tsl5 weakest, NA means not analyzed
+              #Indices
+    PRIMARY KEY(transcriptId)
+);