rename_beast2_options_filenames {beastier} | R Documentation |
Rename the filenames in the BEAST2 options
Description
Rename the filenames in the BEAST2 options
Usage
rename_beast2_options_filenames(beast2_options, rename_fun)
Arguments
beast2_options |
a set of BEAST2 options, that are the R equivalent of the BEAST2 command-line options, as can be created by create_beast2_options |
rename_fun |
a function to rename a filename, as can be checked by check_rename_fun. This function should have one argument, which will be a filename or NA. The function should return one filename (when passed one filename) or one NA (when passed one NA). Example rename functions are:
|
Value
a 'beast2_options' with the filenames it contains renamed
Author(s)
Richèl J.C. Bilderbeek
Examples
check_empty_beaustier_folders()
# beast2_options with local filenames
beast2_options <- create_beast2_options(
input_filename = "my.fas",
output_state_filename = "my_state.xml.state"
)
# Rename filenames to be in /my/new/folder
rename_beast2_options_filenames(
beast2_options = beast2_options,
rename_fun = beautier::get_replace_dir_fun("/my/new/folder")
)
check_empty_beaustier_folders()