kin: Calculate Kinship Matrix

View source: R/kin.R

kinR Documentation

Calculate Kinship Matrix

Description

Calculate the additive and dominance kinship matrix.

Usage

kin(gen)

Arguments

gen

a matrix for genotypes, coded as 1, 0, -1 for AA, Aa, aa. Each row represents an individual and each column represents a marker.

Value

a kinship matrix

Examples

## random population with 100 lines and 1000 markers
gen <- matrix(rep(0,100*1000),100,1000)
gen <- apply(gen,2,function(x){x <- sample(c(-1,0,1), 100, replace = TRUE)})

## generate 100*100 kinship matrix
k <- kin(gen)


predhy documentation built on Nov. 10, 2022, 6:13 p.m.

Related to kin in predhy...