Skip to contents

Forms a dataframe with Id, Sex, and current Age given a list of Ids and a pedigree

Usage

addSexAndAgeToGroup(ids, ped)

Arguments

ids

character vector of animal Ids

ped

datatable that is the Pedigree. It contains pedigree information including the IDs listed in candidates.

Value

Dataframe with Id, Sex, and Current Age

Examples

library(nprcgenekeepr)
data("qcBreeders")
data("qcPed")
df <- addSexAndAgeToGroup(ids = qcBreeders, ped = qcPed)
head(df)
#>           ids sex       age
#> Q0RGP7 Q0RGP7   F 19.961670
#> C1ICXL C1ICXL   F  8.939083
#> J3D3N5 J3D3N5   M 24.010951
#> VFS0XB VFS0XB   M 19.006160
#> HP3E04 HP3E04   M 17.853525
#> 2KULR3 2KULR3   F 11.616701