beastier
| Branch | ![]() |
![]() |
![]() |
|---|---|---|---|
master |
|||
develop |
None |
beastier is an R package to run BEAST2.
beastier is part of the babette package suite:
beautiercreates BEAST2 input (.xml) files.beastierruns BEAST2mauricer: install BEAST2 packagestracererpastes BEAST2 output (.log,.trees, etc) files.
Related R packages:
beastier_on_windows: Verify thatbeastierworks on the Windows operating systemlumier: Shiny app to help create the function call needed
Example for v2.1
output_state_filename <- "out.state"
run_beast2(
input_filename = get_beastier_path("2_4.xml"),
output_state_filename = output_state_filename
)
testit::assert(file.exists(output_state_filename))
Example for v2.0.25
output_log_filename <- "out.log"
output_trees_filename <- "out.trees"
output_state_filename <- "out.state"
run_beast2(
input_filename = get_beastier_path("2_4.xml"),
output_log_filename = output_log_filename,
output_trees_filenames = output_trees_filename,
output_state_filename = output_state_filename
)
testit::assert(file.exists(output_log_filename))
testit::assert(file.exists(output_trees_filename))
testit::assert(file.exists(output_state_filename))
Note that in this version, the filenames for the .log
and .trees files could be specified. This is unneeded: a BEAST2
XML file specifies where these files will be stored:
<?xml [...]?><beast [...]>
[...]
<run [...]>
[...]
<logger id="tracelog" fileName="test_output_0.log" [...]>
[...]
</logger>
[...]
<logger id="treelog.t:[...]" fileName="$(tree).trees" [...]>
[...]
</logger>
</run>
</beast>
When using beautier, this can be specified in create_mcmc:
create_mcmc(
tracelog = create_tracelog(
filename = "my_trace.log"
),
treeslog = create_treeslog(
filename = "my_trees.trees"
)
)
Install
See install.
FAQ
See FAQ
Missing features/unsupported
beastier cannot do everything BEAST2 can.
Here are some missing or (yet) unsupported features:
- Continue a BEAST2 run
- Setup BEAGLE
There is a feature I miss
See CONTRIBUTING, at Submitting use cases
I want to collaborate
See CONTRIBUTING, at 'Submitting code'
I think I have found a bug
See CONTRIBUTING, at 'Submitting bugs'
There's something else I want to say
Sure, just add an Issue. Or send an email.
External links
References
Article about babette:
- Bilderbeek, Richèl JC, and Rampal S. Etienne. "
babette: BEAUti 2, BEAST 2 and Tracer for R." Methods in Ecology and Evolution (2018). https://doi.org/10.1111/2041-210X.13032
FASTA files anthus_aco.fas and anthus_nd2.fas from:
- Van Els, Paul, and Heraldo V. Norambuena. "A revision of species limits in Neotropical pipits Anthus based on multilocus genetic and vocal data." Ibis.




