File: iqtree2.patch

package info (click to toggle)
gubbins 3.4.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,012 kB
  • sloc: python: 5,345; ansic: 5,080; sh: 242; makefile: 130; cpp: 27
file content (17 lines) | stat: -rw-r--r-- 685 bytes parent folder | download
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]