Switch the order of markers on a specified chromosome to a specified new order.
switch.order(cross, chr, order, error.prob=0.0001,
map.function=c("haldane","kosambi","c-f","morgan"),
maxit=4000, tol=1e-6, sex.sp=TRUE)
The input cross
object, but with the marker order on the
specified chromosome updated, and with any derived data removed
(except for recombination fractions, if present, which are not
removed); the genetic map for the relevant chromosome is
re-estimated.
An object of class cross
. See
read.cross
for details.
The chromosome for which the marker order is to be switched. Only one chromosome is allowed. (This should be a character string referring to the chromosomes by name.)
A vector of numeric indices defining the new marker
order. The vector may have length two more than the number of
markers, for easy in use with the output of the function
ripple
.
Assumed genotyping error rate (passed to
est.map
).
Map function to be used (passed to
est.map
).
Maximum number of EM iterations to perform.
Tolerance for determining convergence.
Indicates whether to estimate sex-specific maps; this is used only for the 4-way cross.
Karl W Broman, broman@wisc.edu
flip.order
, ripple
, clean.cross
data(fake.f2)
fake.f2 <- switch.order(fake.f2, 1, c(1,3,2,4:7))
Run the code above in your browser using DataLab