Learn R Programming

malan (version 1.0.3)

build_pedigrees: Build pedigrees from (individuals in) a population.

Description

In a newly simulated population, each individual only knows its father and children. Using this information, this function builds pedigrees. This makes it easier to e.g. population haplotypes, find path between two individuals (if they are not in the same pedigree, they are not connected).

Usage

build_pedigrees(population, progress = TRUE)

Value

An object with class malan_pedigreelist (an internal list of external pointers to pedigrees).

Arguments

population

Population generated by sample_geneology() or sample_geneology_varying_size().

progress

Show progress.

See Also

sample_geneology() and sample_geneology_varying_size() for simulating populations.

Examples

Run this code
sim <- sample_geneology(100, 10)
str(sim, 1)
sim$population
peds <- build_pedigrees(sim$population)
peds

Run the code above in your browser using DataLab