countxo {xoi} | R Documentation |
Estimate number of crossovers
Description
Estimate the number of crossovers in each meiosis in a backcross.
Usage
countxo(cross, chr = NULL)
Arguments
cross |
An object of class |
chr |
Optional set of chromosomes across which to count crossovers. If NULL, the total number of crossovers, genome-wide, is counted. |
Details
This works only a backcross. We use the internal function (within R/qtl)
locate.xo
.
Value
A vector with the estimated number of crossovers for each individual.
Author(s)
Karl W Broman, broman@wisc.edu
See Also
Examples
data(bssbsb)
# estimated number of crossovers on chr 1
nxo <- countxo(bssbsb, chr=1)
# estimated number of crossovers genome-wide
nxo <- countxo(bssbsb)
[Package xoi version 0.72 Index]