File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 28
28
# For compat with older versions of iqtree, we avoid the newish -fast
29
29
# option alias and instead spell out its component parts:
30
30
#
31
- # -ninit 2
31
+ # -- ninit 2
32
32
# -n 2
33
- # -me 0.05
33
+ # --epsilon 0.05
34
34
#
35
35
# This may need to be updated in the future if we want to stay in lock-step
36
36
# with -fast, although there's probably no particular reason we have to.
37
37
# Refer to the handling of -fast in utils/tools.cpp:
38
38
# https://github.com/Cibiv/IQ-TREE/blob/44753aba/utils/tools.cpp#L2926-L2936
39
39
# Increasing threads (-T) can cause IQtree to run longer, hence use AUTO by default
40
40
# -T AUTO makes IQtree chose the optimal number of threads
41
- # -redo prevents IQtree errors when a run was aborted and restarted
42
- "iqtree" : "-ninit 2 -n 2 -me 0.05 -T AUTO -redo" ,
41
+ # -- redo prevents IQtree errors when a run was aborted and restarted
42
+ "iqtree" : "-- ninit 2 -n 2 --epsilon 0.05 -T AUTO - -redo" ,
43
43
}
44
44
45
45
# IQ-TREE only; see usage below
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ Build a tree, augmenting existing default arguments with custom arguments.
40
40
$ $ {AUGUR} tree \
41
41
> -- method iqtree \
42
42
> -- alignment tree / aligned. fasta \
43
- > -- tree-builder-args= " -czb " \
43
+ > -- tree-builder-args= " --polytomy " \
44
44
> -- output " $ TMP /tree_raw.nwk" > / dev/ null
45
45
46
46
Build a tree , replacing existing default arguments with custom arguments.
@@ -49,7 +49,7 @@ Since the following custom arguments are incompatible with the default IQ-TREE a
49
49
$ $ {AUGUR} tree \
50
50
> -- method iqtree \
51
51
> -- alignment tree / full_aligned. fasta \
52
- > -- tree-builder-args= " -czb -bb 1000 -bnni -redo" \
52
+ > -- tree-builder-args= " --polytomy -bb 1000 -bnni - -redo" \
53
53
> -- override-default-args \
54
54
> -- output " $ TMP /tree_raw.nwk" > / dev/ null
55
55
You can’t perform that action at this time.
0 commit comments