c3786681696b93476299dfbfb832b355035861b1
hiram
  Sat Jun 29 15:13:45 2024 -0700
ready for an upgrade to the genark table to add columns currently maintain compatible behavior with previous genark table refs #32596;

diff --git src/hg/lib/genark.sql src/hg/lib/genark.sql
index 17503cc..73befa8 100644
--- src/hg/lib/genark.sql
+++ src/hg/lib/genark.sql
@@ -1,16 +1,18 @@
 # genark.sql was originally generated by the autoSql program, which also 
 # generated genark.c and genark.h.  This creates the database representation of
 # an object which can be loaded and saved from RAM in a fairly 
 # automatic way.
 
 #index to UCSC assembly hubs
 CREATE TABLE genark (
     gcAccession varchar(255) not null,	# GC[AF] accssion identifier, e.g.: GCF_000001405.39
     hubUrl varchar(255) not null,	# path name to hub.txt: GCF/000/001/405/GCF_000001405.39/hub.txt
     asmName varchar(255) not null,	# assembly name: GRCh38.p13
     scientificName varchar(255) not null,	# scientific name: Homo sapiens
     commonName varchar(255) not null,	# common name: human
     taxId int not null,	# taxon id: 9606
+    priority int not null,	# search priority to order hgGateway results
+    clade varchar(255) not null,	# clade group in the GenArk system
               #Indices
     PRIMARY KEY(gcAccession)
 );