
Provides list of potential sires
Source:R/getPotentialSires.R, R/getSimSires.R
getPotentialSires.RdProvides list of potential sires
Provides list of potential sires
Arguments
- ids
character vector of IDs of the animals
- ped
dataframe that is the
Pedigree. It contains pedigree information including the IDs listed incandidates.- 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.
Examples
library(nprcgenekeepr)
ped <- nprcgenekeepr::pedWithGenotype
ids <- nprcgenekeepr::qcBreeders
getPotentialSires(ids, ped, minAge = 1L)
#> [1] "J3D3N5" "VFS0XB" "HP3E04"
library(nprcgenekeepr)
ped <- nprcgenekeepr::pedWithGenotype
ids <- nprcgenekeepr::qcBreeders
getPotentialSires(ids, ped, minAge = 1)
#> [1] "J3D3N5" "VFS0XB" "HP3E04"