powered by
Perform allele lumping (i.e., merging unobserved alleles) for all markers attached to the input pedigree.
lumpAlleles(x, markers = NULL, always = FALSE, verbose = FALSE)
An object similar to x, but whose attached markers have reduced allele set.
x
A ped object or a list of such.
ped
A vector of names or indices referring to markers attached to x. (Default: All markers.)
A logical. If TRUE, lumping is always attempted. By default (FALSE) lumping is skipped for markers where all individuals are genotyped.
A logical.
x = nuclearPed() |> addMarker(geno = c("1/1", NA, NA), alleles = 1:4) # Before lumping afreq(x, 1) # Lump y = lumpAlleles(x, verbose = TRUE) afreq(y, 1)
Run the code above in your browser using DataLab