ReadMrBayesTrees {TreeTools} | R Documentation |
Read posterior tree sample produced by MrBayes
Description
Read posterior trees from 'MrBayes' output files, discarding burn-in generations.
Usage
ReadMrBayesTrees(filepath, n = NULL, burninFrac = NULL)
ReadMrBayes(filepath, n = NULL, burninFrac = NULL)
MrBayesTrees(filepath, n = NULL, burninFrac = NULL)
Arguments
filepath |
character string specifying path to |
n |
Integer specifying number of trees to sample from posterior. |
burninFrac |
Fraction of trees to discard from each run as burn-in.
If |
Details
ReadMrBayesTrees()
samples trees from the posterior distributions
computed using the Bayesian inference software 'MrBayes'
Value
ReadMrBayesTrees()
returns a 'multiPhylo' object containing
n
trees sampled evenly from all runs generated by analysis of filepath
,
or NULL
if no trees are found.
Author(s)
Martin R. Smith (martin.smith@durham.ac.uk)
See Also
Other tree import functions:
ReadTntTree()
Examples
## Not run: # Download will take a few seconds
url <-
"https://raw.githubusercontent.com/ms609/hyoliths/master/MrBayes/hyo.nex"
trees <- ReadMrBayesTrees(url, n = 40)
plot(Consensus(trees, p = 0.5))
## End(Not run)