Skip to content

Commit

Permalink
Prioritise parallelised version of fasttree
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjcroucher committed Nov 30, 2023
1 parent b4e7a92 commit bf3bd21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/gubbins/treebuilders.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def __init__(self, threads: int, bootstrap = 0, model='GTRCAT', seed = None, ver
self.seed = utils.set_seed(seed)

# Identify executable
self.potential_executables = ["FastTree", "fasttree"]
self.potential_executables = ["FastTreeMP","fasttreeMP","FastTree", "fasttree"]
self.executable = utils.choose_executable(self.potential_executables)
if self.executable is None:
sys.exit("No usable version of FastTree could be found.")
Expand Down

0 comments on commit bf3bd21

Please sign in to comment.