# NOT RUN {
data(WarblerG)
A<-extractA(WarblerG)
ped<-matrix(NA, 5,3)
ped[,1]<-1:5
ped[,2]<-c(rep(NA, 4), 1)
ped[,3]<-c(rep(NA, 4), 2)
genotypes<-simgenotypes(A, ped=ped)
sex<-c("Female", "Male", "Female", "Male","Female")
offspring<-c(0,0,0,0,1)
data<-data.frame(id=ped[,1], sex, offspring)
res1<-expression(varPed(x="offspring", restrict=0))
PdP<-PdataPed(formula=list(res1), data=data)
GdP<-GdataPed(G=genotypes$Gobs, id=genotypes$id)
X.list<-getXlist(PdP)
# creates design matrices for offspring (in this case indivdiual "5")
X.list.G<-fillX.G(X.list, A=A, G=genotypes$Gobs, E2=0.005)
# genetic likelihoods are arranged sires within dams
X.list.G$X$"5"$dam.id
X.list.G$X$"5"$sire.id
# so for this example we have parental combinations
# ("1","2"), ("1","4"), ("3","2"), ("2","4"):
X.list.G$X$"5"$G
# The true parents have the highest likelihood in this case
# }
Run the code above in your browser using DataLab