Determines if the name is a valid tree prior name
Source:R/is_tree_prior_name.R
is_tree_prior_name.Rd
Determines if the name is a valid tree prior name
Examples
check_empty_beautier_folder()
# TRUE
is_tree_prior_name("birth_death")
#> [1] TRUE
is_tree_prior_name("coalescent_bayesian_skyline")
#> [1] TRUE
is_tree_prior_name("coalescent_constant_population")
#> [1] TRUE
is_tree_prior_name("coalescent_exp_population")
#> [1] TRUE
is_tree_prior_name("yule")
#> [1] TRUE
# FALSE
is_tree_prior_name("nonsense")
#> [1] FALSE
check_empty_beautier_folder()