pedIBD {optiSel} | R Documentation |
Calculates the Pedigree-based Kinship Matrix
Description
Calculates the pedigree based probability of alleles to be IBD. This pedigree based kinship matrix is also called coancestry matrix and is half the additive relationship matrix.
Usage
pedIBD(Pedig, keep.only=NULL, keep=keep.only, kinFounder=NULL)
Arguments
Pedig |
Data frame containing the pedigree with |
keep |
If |
keep.only |
If |
kinFounder |
Kinship matrix for the founders. The row names are the ids of the founders. By default, founders are assumed to be unrelated. Founders not included in this matrix are also assumed to be unrelated. |
Details
Computation of pedigree based kinship matrix f which is half the additive relationship matrix. For individuals i and j it is defined as
fij = Probability that two alleles chosen from individuals i and j are IBD. |
Value
Kinship matrix.
Author(s)
Robin Wellmann
Examples
data(PedigWithErrors)
data(Phen)
keep <- Phen$Indiv
Pedig <- prePed(PedigWithErrors, keep=keep, thisBreed="Hinterwaelder", lastNative=1970)
pedA <- pedIBD(Pedig, keep.only=keep)