Make a mrBayes run block file with a constraint topology and a set of node calibrations and missing taxa
make_mrbayes_runfile(
constraint = NULL,
taxa = NULL,
ncalibration = NULL,
missing_taxa = NULL,
age_distribution = "fixed",
root_calibration = FALSE,
mrbayes_output_file = "mrbayes_run.nexus"
)
A MrBayes block run file in nexus format.
The constraint tree: a phylo object or a newick character string, with or without branch lengths.
A character vector with taxon names to be maintained in tree
The node calibrations: a phylo object with branch lengths proportional to time; in this case all nodes from ncalibration will be used as calibration points. Alternatively, a list with two elements: the first is a character vector with node names from phy to calibrate; the second is a numeric vector with the corresponding ages to use as calibrations.
A tree, a data frame or a vector enlisting all missing taxa you want to include.
Either as a phylo object or as a newick character string. It contains all taxa that you want at the end, both missing and non missing. This tree will be used as a hard constraint.
data.frame
It contains two columns named "taxon" and "clade". The first one contains a character vector of missing taxon names. The second one contains a character or numeric vector of nodes from a constraint tree to which each taxon will be assigned.
It contains the names of the missing taxa. They will be added at random to the constraint tree.
A character string specifying the type of calibration. Only "fixed" and "uniform" are implemented for now.
The age given in ncalibration will be used as fixed age.
The age given in ncalibration will be used as mean age. The standard deviation can be provided. # still need to add this option. By default, a 95 CI sd is used.
The age given in ncalibration will be used as mean age. Where min_age = 0.9 * mean age, and max_age = 1.1 * mean age.
Used to set a calibration at the root or not. Default to FALSE. Only relevant if ncalibration is specified.
A character vector specifying the name of mrBayes run file and outputs (can specify directory too).