feat_outgroup {coala} | R Documentation |
Feature: Outgroup
Description
This feature declares an existing population as outgroup. Outgroups are used to determine the ancestral allele in finite sites simulations and are required there. All individuals of the outgroup are ignored when calculating summary statistics. If the outgroup consists of multiple individuals, all positions where the individuals have different alleles are ignored.
Usage
feat_outgroup(population, locus_group = "all")
Arguments
population |
The population that is marked as outgroup. If finite-sites mutation models are used, the last population must be specified as outgroup. |
locus_group |
The loci for which this features is used. Can either be
|
Value
The feature, which can be added to a model created with
coal_model
using +
.
See Also
For creating a model: coal_model
Other features:
feat_growth()
,
feat_ignore_singletons()
,
feat_migration()
,
feat_mutation()
,
feat_pop_merge()
,
feat_recombination()
,
feat_selection()
,
feat_size_change()
,
feat_unphased()
Examples
# A simple finite sites model
model <- coal_model(c(4, 6, 1), 2, 10) +
feat_outgroup(3) +
feat_pop_merge(0.5, 2, 1) +
feat_pop_merge(2, 3, 1) +
feat_mutation(5, model = "GTR", gtr_rates = 1:6)