create_gamma_site_model {beautier} | R Documentation |
Create a gamma site model, part of a site model
Description
Create a gamma site model, part of a site model
Usage
create_gamma_site_model(
gamma_cat_count = "0",
gamma_shape = "1.0",
prop_invariant = "0.0",
gamma_shape_prior_distr = NA,
freq_equilibrium = "estimated",
freq_prior_uniform_distr_id = 1000
)
Arguments
gamma_cat_count |
the number of gamma categories, must be an integer with value zero or more |
gamma_shape |
gamma curve shape parameter |
prop_invariant |
the proportion invariant, must be a value from 0.0 to 1.0 |
gamma_shape_prior_distr |
the distribution of the gamma shape prior.
|
freq_equilibrium |
the frequency in which the rates are at equilibrium
are either |
freq_prior_uniform_distr_id |
the ID of the ‘FrequenciesPrior'’s uniform distribution |
Value
a gamma site model
Author(s)
Richèl J.C. Bilderbeek
See Also
Use create_gamma_site_model
to create a gamma site model
Examples
if (is_on_ci()) {
gamma_site_model <- create_gamma_site_model(prop_invariant = 0.5)
site_model <- create_hky_site_model(gamma_site_model = gamma_site_model)
beast2_input_file <- get_beautier_tempfilename()
create_beast2_input_file(
get_fasta_filename(),
beast2_input_file,
site_model = site_model
)
file.remove(beast2_input_file)
remove_beautier_folder()
}