Skip to content

Commit

Permalink
adding PYTHON3_PATH to compleasm_to_hints call
Browse files Browse the repository at this point in the history
  • Loading branch information
KatharinaHoff committed Dec 22, 2023
1 parent 4b1e9f7 commit b68e6c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/braker.pl
Original file line number Diff line number Diff line change
Expand Up @@ -4531,7 +4531,7 @@ sub make_compleasm_hints {
$AUGUSTUS_SCRIPTS_PATH, $AUGUSTUS_CONFIG_PATH
);
$errorfile = "$errorfilesDir/compleasm_to_hints.stderr";
$cmdString = "$string -p $COMPLEASM_PATH/compleasm.py -g $genome -d $busco_lineage -t $CPU "
$cmdString = "$PYTHON3_PATH/python3 $string -p $COMPLEASM_PATH/compleasm.py -g $genome -d $busco_lineage -t $CPU "
. "-o $compleasm_hints 1> $errorfile 2>&1";
# execute the command string
print LOG "$cmdString\n" if ($v > 3);
Expand Down Expand Up @@ -5635,7 +5635,7 @@ sub get_etp_hints_for_Augustus {
"get_etp_hints.py", $AUGUSTUS_BIN_PATH,
$AUGUSTUS_SCRIPTS_PATH, $AUGUSTUS_CONFIG_PATH
);
$cmdString .= "python3 $string --genemark_scripts $GENEMARK_PATH --out $hintsfile ";
$cmdString .= "$PYTHON3_PATH/python3 $string --genemark_scripts $GENEMARK_PATH --out $hintsfile ";
if (defined($etpplus_dir)) {
$cmdString .= "--etp_wdir $etpplus_dir ";
} else {
Expand Down

0 comments on commit b68e6c7

Please sign in to comment.