TreeFusingOptions | R Documentation |
TreeFusingOptions
is an R6 class that defines the set of parameters
required for performing tree fusing operations in nitro
.
rounds
An integer value indicating the number of tree-fusing rounds to perform.
exchange_equal
A logical value indicating whether to accept exchanges of equal score.
start_best
A logical value indicating whether to use the best tree to start tree-fusing.
keep_all
A logical value indicating whether to keep all trees found instead of only the best trees.
accept_all
A logical value indicating whether to accept all exchanges rather than only those that improve the best score.
swap
A logical value indicating whether to perform tree-bisection reconnection swapping after exchanging clades.
new()
TreeFusingOptions$new( rounds = 5, exchange_equal = FALSE, start_best = TRUE, keep_all = TRUE, accept_all = TRUE, swap = TRUE )
rounds
An integer value indicating the number of tree-fusing rounds to perform.
exchange_equal
A logical value indicating whether to accept exchanges of equal score.
start_best
A logical value indicating whether to use the best tree to start tree-fusing.
keep_all
A logical value indicating whether to keep all trees found instead of only the best trees.
accept_all
A logical value indicating whether to accept all exchanges rather than only those that improve the best score.
swap
A logical value indicating whether to perform tree-bisection reconnection swapping after exchanging clades.
print()
TreeFusingOptions$print(...)
...
Ignored.
queue()
TreeFusingOptions$queue(...)
...
Ignored.
clone()
The objects of this class are cloneable with this method.
TreeFusingOptions$clone(deep = FALSE)
deep
Whether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.