a7cc8f8b8547b215cd4d25147e38aea308913b82
hiram
  Fri Dec 5 17:27:03 2025 -0800
checkin long standing debug print statement

diff --git src/hg/makeDb/doc/asmHubs/mkGenomes.pl src/hg/makeDb/doc/asmHubs/mkGenomes.pl
index a184fe6478b..acbc72a1fc2 100755
--- src/hg/makeDb/doc/asmHubs/mkGenomes.pl
+++ src/hg/makeDb/doc/asmHubs/mkGenomes.pl
@@ -239,30 +239,31 @@
   $commonName{$asmId} = $commonName;
   push @orderList, $asmId;
   printf STDERR "orderList[$assemblyCount] = $asmId\n";
   ++$assemblyCount;
 }
 close (FH);
 
 my $buildDone = 0;
 my $orderKey = 0;
 foreach my $asmId (@orderList) {
   ++$orderKey;
   next if ($asmId !~ m/^GC/);
   my $chromAuthority = "";
   $chromAuthority = `~/kent/src/hg/makeDb/doc/asmHubs/chromAuthority.pl $asmId 2> /dev/null`;
   chomp $chromAuthority;
+  printf STDERR "# chromAuthority: '%s'\n", $chromAuthority;
   my ($gcPrefix, $accession, undef) = split('_', $asmId);
   my $accessionId = sprintf("%s_%s", $gcPrefix, $accession);
   my $accessionDir = substr($asmId, 0 ,3);
   $accessionDir .= "/" . substr($asmId, 4 ,3);
   $accessionDir .= "/" . substr($asmId, 7 ,3);
   $accessionDir .= "/" . substr($asmId, 10 ,3);
   my $buildDir = "/hive/data/genomes/asmHubs/refseqBuild/$accessionDir/$asmId";
   my $destDir = "/hive/data/genomes/asmHubs/$accessionDir/$accessionId";
   if ($gcPrefix eq "GCA") {
      $buildDir = "/hive/data/genomes/asmHubs/genbankBuild/$accessionDir/$asmId";
   }
   if ( ! -s "${buildDir}/${asmId}.chrom.sizes" ) {
     printf STDERR "# ERROR: missing ${asmId}.chrom.sizes in\n# ${buildDir}\n";
     next;
   }