replace.map {qtl} | R Documentation |
Replace the map portion of a cross object.
replace.map(cross, map) ## S3 method for class 'cross': replacemap(object, map)
cross |
An object of class cross . See
read.cross for details. |
object |
Same as cross . |
map |
A list containing the new genetic map. This must be the
same length and with the same marker names as that contained in
cross . |
The input cross
object with the genetic map replaced by
the input map
.
Karl W Broman, kbroman@biostat.wisc.edu
data(fake.f2) newmap <- est.map(fake.f2) plot.map(fake.f2, newmap) fake.f2 <- replace.map(fake.f2, newmap)