4c1d2a0a761f1afc9da81243357e462ae14c3756
braney
  Thu Dec 15 14:49:26 2022 -0800
add assembly aliasing to hub connection

diff --git src/hg/lib/asmAlias.sql src/hg/lib/asmAlias.sql
new file mode 100644
index 0000000..9bc9833
--- /dev/null
+++ src/hg/lib/asmAlias.sql
@@ -0,0 +1,12 @@
+# asmAlias.sql was originally generated by the autoSql program, which also 
+# generated asmAlias.c and asmAlias.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#correspondence of assembly identifiers to UCSC database or GenArk hub equivalents
+CREATE TABLE asmAlias (
+    alias varchar(255) not null,	# external assembly name
+    browser varchar(255) not null,	# UCSC genome browser equivalent
+              #Indices
+    PRIMARY KEY(alias)
+);