strip.partials {qtl} | R Documentation |
Replace all partially informative genotypes (e.g., dominant markers in an intercross) and replace them with missing values.
strip.partials(cross, verbose=TRUE)
cross |
An object of class cross . See
read.cross for details. |
verbose |
If TRUE, print the number of genotypes removed. |
The same class cross
object as in the input, but with partially
informative genotypes made missing.
Karl W Broman, kbroman@jhsph.edu
data(listeria) sum(nmissing(listeria)) listeria <- strip.partials(listeria) sum(nmissing(listeria))