recrate2scanone {xoi} | R Documentation |
Convert recrate to scanone format
Description
Convert the result of est.recrate()
to the format
output by R/qtl's qtl::scanone()
function.
Usage
recrate2scanone(recrate, phymap = NULL)
Arguments
recrate |
A list of results from |
phymap |
A list of vectors of Mbp positions of markers |
Value
A data frame with class "scanone"
, in the format output by qtl::scanone()
.
Author(s)
Karl W Broman, broman@wisc.edu
See Also
Examples
pmap <- sim.map(100, n.mar=51, anchor=TRUE, include.x=FALSE, eq.spacing=TRUE)
# simulate cross
x <- sim.cross(pmap, type="bc", n.ind=501)
# estimate map for that cross
emap <- est.map(x)
# empirical estimate of recombination rate
rr <- est.recrate(emap[[1]], pmap[[1]], window=5)
# make it a list (one component per chromosome, but here just the one chromosome)
rr <- list("1"=rr)
# convert to scanone output and plot
rr_scanone <- recrate2scanone(rr)
plot(rr_scanone)
[Package xoi version 0.72 Index]