Provides list of potential sires
getPotentialSires(ids, minAge = 1, ped)
ids | character vector of IDs of the animals |
---|---|
minAge | integer value indicating the minimum age to consider in group formation. Pairwise kinships involving an animal of this age or younger will be ignored. Default is 1 year. |
ped | dataframe that is the `Pedigree`. It contains pedigree
information including the IDs listed in |
A character vector of potential sire Ids
# \donttest{ library(nprcgenekeepr) ped <- nprcgenekeepr::pedWithGenotype ids <- nprcgenekeepr::qcBreeders getPotentialSires(ids, minAge = 1, ped)#> [1] "J3D3N5" "VFS0XB" "HP3E04"# }