bc7b8c2d05214b6e6ebe5d7b99d8361394d3c3d5
hiram
  Wed Mar 15 21:50:12 2023 -0700
do not want sortable table since it now has an extra header in the middle no redmine

diff --git src/hg/makeDb/doc/asmHubs/hubIndex.pl src/hg/makeDb/doc/asmHubs/hubIndex.pl
index e2c86df..8b4b05b 100755
--- src/hg/makeDb/doc/asmHubs/hubIndex.pl
+++ src/hg/makeDb/doc/asmHubs/hubIndex.pl
@@ -23,31 +23,30 @@
 <!--#set var="ROOT" value=".." -->
 
 <!--#include virtual="$ROOT/inc/gbPageStartHardcoded.html" -->
 
 <h1>GenArk: UCSC Genome Archive</h1>
 
 '
 }
 
 #############################################################################
 sub endHtml() {
 printf '
 </div><!-- closing gbsPage from gbPageStartHardcoded.html -->
 </div><!-- closing container-fluid from gbPageStartHardcoded.html -->
 <!--#include virtual="$ROOT/inc/gbFooterHardcoded.html"-->
-<script src="<!--#echo var="ROOT" -->/js/sorttable.js"></script>
 <script src="<!--#echo var="ROOT" -->/js/analytics.js"></script>
 </body></html>
 '
 }
 
 #############################################################################
 startHtml;
 
 my %expectedList = (
  "VGP" => 1,
  "HPRC" => 1,
  "birds" => 1,
  "fish" => 1,
  "globalReference" => 1,
  "mammals" => 1,
@@ -155,31 +154,31 @@
 
 my $genomeCount = `grep -h ^genome /mirrordata/hubs/VGP/*enomes.txt | wc -l`;
 chomp $genomeCount;
 $genomeCounts{"VGP"} = $genomeCount;
 
 my @checkList = ('primates', 'mammals', 'birds', 'fish', 'vertebrate', 'legacy', 'plants', "invertebrate", "fungi", 'viral', 'bacteria', 'HPRC', 'globalReference');
 
 foreach my $hubSet (@checkList) {
   $genomeCount = `grep -h ^genome /mirrordata/hubs/$hubSet/genomes.txt | wc -l`;
   chomp $genomeCount;
   $genomeCounts{$hubSet} = $genomeCount;
 }
 
 my $hubCount = 0;
 
-printf "<table class='sortable' border='1'>\n";
+printf "<table border='1'>\n";
 printf "<thead><tr>\n";
 printf "  <th>hub&nbsp;gateway</th>\n";
 printf "  <th>description</th>\n";
 printf "</tr></thead><tbody>\n";
 
 # construct table
 foreach my $orderUp (@orderOutHubs) {
   printf "<tr>\n";
   ++$hubCount;
   if ($orderUp eq "VGP") {
      printf "    <th style='text-align:center;' colspan=2>collections below are subsets of the assemblies above</th>\n";
      printf "</tr>\n";
      printf "<tr>\n";
   }
   if ($orderUp eq "fish") {