Description Usage Arguments Value Examples
View source: R/sitesMinEntropy.R
After finding the lineagePath
of a phylogenetic
tree, sitesMinEntropy
perform entropy minimization on every site of
the sequence to group the tips according to amino acid/nucleotide.
1 2 3 4 5 6 7 8 9 10 | sitesMinEntropy(x, ...)
## S3 method for class 'lineagePath'
sitesMinEntropy(
x,
minEffectiveSize = NULL,
searchDepth = 1,
method = c("compare", "insert", "delete"),
...
)
|
x |
A |
... |
further arguments passed to or from other methods. |
minEffectiveSize |
The minimum number of tips in a group. |
searchDepth |
The function uses heuristic search but the termination of
the search cannot be intrinsically decided. |
method |
The strategy for predicting the fixation. The basic approach is entropy minimization and can be achieved by adding or removing fixation point, or by comparing the two. |
A sitesMinEntropy
object.
1 2 3 4 | data(zikv_tree_reduced)
data(zikv_align_reduced)
tree <- addMSA(zikv_tree_reduced, alignment = zikv_align_reduced)
sitesMinEntropy(lineagePath(tree))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.