makeAinv {pedigree} | R Documentation |
Makes inverted A matrix for a pedigree
Description
Makes inverted A matrix for a pedigree and stores it in a file called
Ainv.txt
.
Usage
makeAinv(ped)
Arguments
ped |
|
Value
Logical.
Examples
id <- 1:6
dam <- c(0,0,1,1,4,4)
sire <- c(0,0,2,2,3,5)
ped <- data.frame(id,dam,sire)
makeAinv(ped)
Ai <- read.table('Ainv.txt')
nInd <- nrow(ped)
Ainv <- matrix(0,nrow = nInd,ncol = nInd)
Ainv[as.matrix(Ai[,1:2])] <- Ai[,3]
dd <- diag(Ainv)
Ainv <- Ainv + t(Ainv)
diag(Ainv) <- dd
if(file.exists("Ainv.txt"))
file.remove("Ainv.txt")
[Package pedigree version 1.4.2 Index]