check_beast2_pkgs {babette} | R Documentation |
Checks if bbt_run
has the 'BEAST2' packages needed to process
its arguments. Will stop if not.
Description
For example, to use a Nested Sampling MCMC, the 'BEAST2' 'NS' package needs to be installed.
Usage
check_beast2_pkgs(mcmc, beast2_path = get_default_beast2_bin_path())
Arguments
mcmc |
the MCMC options, see create_mcmc |
beast2_path |
name of either a 'BEAST2' binary file
(usually simply |
Value
Nothing.
Examples
if (beautier::is_on_ci() && is_beast2_installed()) {
beastier::remove_beaustier_folders()
beastier::check_empty_beaustier_folders()
# Minimal BEAST2 setup
check_beast2_pkgs(mcmc = create_mcmc())
# BEAST2 with NS package installed
if (is_beast2_ns_pkg_installed()) {
check_beast2_pkgs(mcmc = create_ns_mcmc())
}
beastier::remove_beaustier_folders()
beastier::check_empty_beaustier_folders()
}
[Package babette version 2.3.4 Index]