View source: R/create_beauti_options.R
create_beauti_options | R Documentation |
'BEAUti' options are settings that differ between 'BEAUti' version. The use of these options is mostly for testing older versions Whatever option chosen here, the created XML file will be valid.
create_beauti_options(
capitalize_first_char_id = FALSE,
nucleotides_uppercase = FALSE,
beast2_version = "2.4",
required = "",
sequence_indent = 20,
status = "",
namespace = get_default_beast_namespace_v2_4()
)
capitalize_first_char_id |
must the ID of alignment start with a capital? TRUE if yes, FALSE if it can be left lower case (if it is lowercase) |
nucleotides_uppercase |
must the nucleotides of the DNA sequence be in uppercase? |
beast2_version |
the BEAST2 version |
required |
things that may be required,
for example |
sequence_indent |
the number of spaces the XML |
status |
the BEAUti status |
namespace |
the 'namespace' XML element in the 'beast' XML tag. |
Available BEAUti options are:
* create_beauti_options_v2_4
* create_beauti_options_v2_6
'beautier' uses v2.4 by default, as this is when the first tests were written.
a BEAUti options structure
Richèl J.C. Bilderbeek
if (is_on_ci()) {
check_empty_beautier_folder()
beauti_options <- create_beauti_options_v2_4()
xml <- create_beast2_input(
get_fasta_filename(),
beauti_options = beauti_options
)
check_empty_beautier_folder()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.