156285591ea89b04acaf0f97c123e67f481c521e
braney
  Thu Jul 29 11:45:20 2021 -0700
some AS files to support knownGene in a separate database

diff --git src/hg/lib/defaultKnown.sql src/hg/lib/defaultKnown.sql
new file mode 100644
index 0000000..d53addb
--- /dev/null
+++ src/hg/lib/defaultKnown.sql
@@ -0,0 +1,11 @@
+# defaultKnown.sql was originally generated by the autoSql program, which also 
+# generated defaultKnown.c and defaultKnown.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#Name of database with knownGene tables
+CREATE TABLE defaultKnown (
+    name varchar(255) not null,	# Name of database with knownGene tables
+              #Indices
+    PRIMARY KEY(name)
+);