
hasBothParents checks to see if both parents are identified.
Source:R/hasBothParents.R
hasBothParents.Rd
hasBothParents checks to see if both parents are identified.
Examples
library(nprcgenekeepr)
ped <- nprcgenekeepr::pedOne
names(ped) <- c("id", "sire", "dam", "sex", "birth")
hasBothParents("o2", ped)
#> [1] TRUE
ped$sire[ped$id == "o2"] <- NA
hasBothParents("o2", ped)
#> [1] FALSE