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
--- a/python/gubbins/treebuilders.py
+++ b/python/gubbins/treebuilders.py
@@ -283,7 +283,7 @@
self.invariant_site_correction = (invariant_site_correction if max(constant_base_counts) > 0 else False)
# 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]
|