parse_beast_posterior {tracerer} | R Documentation |
Parses BEAST2 output files to a posterior
Description
Parses BEAST2 output files to a posterior
Usage
parse_beast_posterior(
trees_filenames,
tracelog_filename,
log_filename = "deprecated"
)
Arguments
trees_filenames |
the names of one or more a BEAST2
posterior |
tracelog_filename |
name of the BEAST2 tracelog |
log_filename |
deprecated name
of the BEAST2 tracelog |
Value
a list with the following elements:
itemestimates
: parameter estimates
item
[alignment_id]_trees
: the phylogenies in the
BEAST2 posterior. [alignment_id]
is the ID
of the alignment.
Author(s)
Richèl J.C. Bilderbeek
See Also
Use remove_burn_ins
to remove the burn-ins from
the posterior's estimates (posterior$estimates
)
Examples
trees_filenames <- get_tracerer_path("beast2_example_output.trees")
tracelog_filename <- get_tracerer_path("beast2_example_output.log")
posterior <- parse_beast_posterior(
trees_filenames = trees_filenames,
tracelog_filename = tracelog_filename
)
[Package tracerer version 2.2.3 Index]