1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Author: Andreas Tille <tille@debian.org>
Last-Update: 2022-02-13
Bug-Debian: https://bugs.debian.org/1005476
Description: Adapt test to iqtree2
Forwarded: https://github.com/nickjcroucher/gubbins/issues/379
--- gubbins.orig/python/gubbins/treebuilders.py
+++ gubbins/python/gubbins/treebuilders.py
@@ -278,7 +278,7 @@
self.additional_args = additional_args
# Construct base command
- self.executable = "iqtree"
+ self.executable = "iqtree2"
if utils.which(self.executable) is None:
sys.exit("No usable version of IQTree could be found.")
command = [self.executable]
|