We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3b8b01 commit 1097583Copy full SHA for 1097583
OrthoEvol/Orthologs/Phylogenetics/PhyML/phyml.py
@@ -56,7 +56,9 @@ def _check_exe(self):
56
if shutil.which(phyml_exe):
57
return phyml_exe
58
else:
59
- self.phyml_log.error("%s is not in the path." % phyml_exe)
+ error_message = f"{phyml_exe} is not in the PATH. Please ensure that the PhyML executable is installed and available in your system's PATH."
60
+ self.phyml_log.error(error_message)
61
+ raise FileNotFoundError(error_message)
62
63
def run(self, model="WAG", alpha="e", bootstrap=100):
64
""""Run phyml."""
0 commit comments