65071c1d6cc890e6ad0d23ab3addc13dac6e3a8b
hiram
  Wed Dec 10 20:34:55 2025 -0800
document that schema for the hgcentral genarkOrg table refs #36213

diff --git src/hg/lib/genarkOrg.sql src/hg/lib/genarkOrg.sql
new file mode 100644
index 00000000000..b290aede60a
--- /dev/null
+++ src/hg/lib/genarkOrg.sql
@@ -0,0 +1,10 @@
+# genarkOrg.sql was originally generated by the autoSql program
+
+#relating gcAccession to a genome common name
+CREATE TABLE genarkOrg (
+    gcAccession varchar(255) not null,	# GC[AF] accssion identifier, e.g.: GCF_000001405.39
+    genome varchar(255) not null,	# common name from NCBI taxonomy
+    #Indices
+    PRIMARY KEY(gcAccession),
+    INDEX(genome)
+);