Learn R Programming

nprcgenekeepr (version 2.0.0)

hasBothParents: Check whether an animal has both parents

Description

Check whether an animal has both parents

Usage

hasBothParents(id, ped)

Value

TRUE if ID has both sire and dam identified in ped.

Arguments

id

character vector of IDs to examine for parents

ped

The pedigree information in data.frame format

Examples

Run this code
library(nprcgenekeepr)
ped <- nprcgenekeepr::pedOne
names(ped) <- c("id", "sire", "dam", "sex", "birth")
hasBothParents("o2", ped)
ped$sire[ped$id == "o2"] <- NA
hasBothParents("o2", ped)

Run the code above in your browser using DataLab