File: iqtree2.patch

package info (click to toggle)
gubbins 3.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,940 kB
  • sloc: ansic: 5,069; python: 4,964; sh: 236; makefile: 133; cpp: 27
file content (17 lines) | stat: -rw-r--r-- 636 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

--- 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]