File: convert.map.Rd

package info (click to toggle)
r-cran-qtl 1.44-9-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 12,256 kB
  • sloc: ansic: 13,757; cpp: 2,837; ruby: 193; sh: 184; makefile: 5
file content (47 lines) | stat: -rw-r--r-- 1,308 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
\name{convert.map}
\alias{convert.map}

\title{Change map function for a genetic map}

\description{
  Convert a genetic map from using one map function to another.
}

\usage{
\method{convert}{map}(object, old.map.function=c("haldane", "kosambi", "c-f", "morgan"),
         new.map.function=c("haldane", "kosambi", "c-f", "morgan"), \dots)
}

\arguments{
 \item{object}{A genetic map object, of class \code{"map"}: A list whose
 components are vectors of marker locations.}
 \item{old.map.function}{The map function used in forming the map in
   \code{object}.}
 \item{new.map.function}{The new map function to be used.}
 \item{\dots}{Ignored at this point.}
}

\value{
  The same as the input, but with inter-marker distances changed to
  reflect a different map function.
}

\details{
  The location of the first marker on each chromosome is left
  unchanged.  Inter-marker distances are converted to recombination
  fractions with the inverse of the \code{old.map.function}, and then
  back to distances with the \code{new.map.function}.
}

\author{Karl W Broman, \email{broman@wisc.edu} }

\examples{
data(listeria)
map <- pull.map(listeria)
map <- convert(map, "haldane", "kosambi")
listeria <- replace.map(listeria, map)
}

\seealso{ \code{\link{est.map}}, \code{\link{replace.map}} }

\keyword{manip}