Description Usage Arguments Details Value Note Author(s) References See Also Examples
This function calls the RAxML algorithm (A. Stamatakis, 2006 onwards) to find the maximum likelihood estimate of tree topology and branch lengths for a given DNA sequence alignment. It can also do reasonably rapid non-parametric bootstrapping.
1 2 3 |
x |
A matrix of DNA sequences of class |
runs |
A vector of mode |
partition |
A |
outgroup |
A vector of mode |
backbone |
A |
optimize |
A logical; if |
clear |
A logical indicating if the RAxML output files should be cleared from the RAXML directory and transferred to another directory created automatically in the current R working directory. |
file |
A vector of mode |
path |
A vector of mode |
runs
is a numeric vector either of length 1 or 2. The first number defaults to 10 and gives the number of tree searches that are conducted in order to find the best maximum likelihood estimate of the phylogenie. The second number - if present - gives the number of non-parameteric bootstrap replicates. The bipartitions found in these bootstraps are subsequently mapped on the best topology found in the previous step.
If you are doing non-parametric bootstraps and you decide to stop the analysis before finishing the specified number of runs, you can use the UNIX command kill
to do so. Bipartitions are then calculated from the existing replicates and the output is stored in exactly the same manner as as in a nonterminated analysis.
an object of class phylo
RAxML is a C program and the source code is not contained in this package. This means that in order to run this function you will need to install RAxML yourself. See the 'Software' tab on http://www.exelixis-lab.org/ for the most recent documentation and source code of RAxML. Depending on where you chose to install RAxML, you need to adjust the path
argument.
raxml
was last tested and running fine with the alpha release of RAxML 7.2.8.
Christoph Heibl
Stamatakis, A. 2006. RAxML-VI-HPC: Maximum likelihood-based phylogenetic analyses with thousands of taxa and mixed models. Bioinformatics 22: 2688-2690.
node.support
for visualization of non-parametric bootstrap values on a phylogenetic tree.
1 2 3 4 | ## not run
# data(woodmouse)
# MLtree <- raxml(woodmouse, runs = c(2, 5))
# plot.phylo(MLtree)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.