bdc5df573ffaa879405a4e13f10c205fed01c4d1
hiram
  Fri May 1 12:55:06 2026 -0700
explicit /cluster/bin/ path names for kent binaries to allow these scripts to function in cron jobs refs #31811

diff --git src/hg/utils/automation/asmHubEnsGene.pl src/hg/utils/automation/asmHubEnsGene.pl
index d8f08cf1cdc..6e70d68e2b3 100755
--- src/hg/utils/automation/asmHubEnsGene.pl
+++ src/hg/utils/automation/asmHubEnsGene.pl
@@ -42,31 +42,31 @@
 }
 
 if ( ! -s $ensGeneBbi ) {
   printf STDERR "ERROR: can not find ensGene bbi file:\n\t'%s'\n", $ensGeneBbi;
   exit 255;
 }
 
 my $em = "<em>";
 my $noEm = "</em>";
 my $assemblyDate = `grep -v "^#" $namesFile | cut -f9`;
 chomp $assemblyDate;
 my $ncbiAssemblyId = `grep -v "^#" $namesFile | cut -f10`;
 chomp $ncbiAssemblyId;
 my $organism = `grep -v "^#" $namesFile | cut -f5`;
 chomp $organism;
-my $geneCount = `bigBedInfo $ensGeneBbi | egrep "itemCount:|basesCovered:" | xargs echo | sed -e 's/itemCount/Gene count/; s/ basesCovered/; Bases covered/;'`;
+my $geneCount = `/cluster/bin/x86_64/bigBedInfo $ensGeneBbi | egrep "itemCount:|basesCovered:" | xargs echo | sed -e 's/itemCount/Gene count/; s/ basesCovered/; Bases covered/;'`;
 chomp $geneCount;
 if (length($fbBases)) {
   $geneCount .= sprintf(" (%s bases in exons only)", commify($fbBases));
 }
 
 print <<_EOF_
 <h2>Description</h2>
 <p>
 This track shows the Ensembl gene, $ensVersion, annotations on
 the $assemblyDate $em${organism}$noEm/$asmId genome assembly.<br>
 <br>
 These gene predictions were generated by
 <a href="http://www.ensembl.org/index.html" target="_blank">Ensembl</a>.<br>
 <br>
 $geneCount