| TreeFusingOptions | R Documentation |
TreeFusingOptions is an R6 class that defines the set of parameters
required for performing tree fusing operations in nitro.
roundsAn integer value indicating the number of tree-fusing rounds to perform.
exchange_equalA logical value indicating whether to accept exchanges of equal score.
start_bestA logical value indicating whether to use the best tree to start tree-fusing.
keep_allA logical value indicating whether to keep all trees found instead of only the best trees.
accept_allA logical value indicating whether to accept all exchanges rather than only those that improve the best score.
swapA 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 )
roundsAn integer value indicating the number of tree-fusing rounds to perform.
exchange_equalA logical value indicating whether to accept exchanges of equal score.
start_bestA logical value indicating whether to use the best tree to start tree-fusing.
keep_allA logical value indicating whether to keep all trees found instead of only the best trees.
accept_allA logical value indicating whether to accept all exchanges rather than only those that improve the best score.
swapA 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)
deepWhether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.