clean.cross {qtl} | R Documentation |
Remove derived data
Description
Remove any intermediate calculations from a cross object.
Usage
## S3 method for class 'cross'
clean(object, ...)
Arguments
object |
An object of class |
... |
Ignored at this point. |
Value
The input object, with any intermediate calculations
(such as is produced by calc.genoprob
,
argmax.geno
and sim.geno
)
removed.
Author(s)
Karl W Broman, broman@wisc.edu
See Also
drop.nullmarkers
,
drop.markers
, clean.scantwo
Examples
data(fake.f2)
names(fake.f2$geno)
fake.f2 <- calc.genoprob(fake.f2)
names(fake.f2$geno)
fake.f2 <- clean(fake.f2)
names(fake.f2$geno)
[Package qtl version 1.66 Index]