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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
\name{plot.map}
\alias{plot.map}
\title{Plot genetic map}
\description{
Plot genetic map of marker locations for all chromosomes.
}
\usage{
\method{plot}{map}(x, map2, chr, horizontal=FALSE, shift=TRUE,
show.marker.names=FALSE, alternate.chrid=FALSE, \dots)
}
\arguments{
\item{x}{A list whose components are vectors of marker locations. A
\code{cross} object may be given instead, in which case the genetic
map it contains is used.}
\item{map2}{An optional second genetic map with the same number of
chromosomes and markers as the first. As with the first argument, a
\code{cross} object may be given instead. If this argument is
given, a comparison of the two genetic maps is plotted.}
\item{chr}{Optional vector specifying which chromosomes to plot. (The
chromosomes must be specified by name.)}
\item{horizontal}{Specifies whether the chromosomes should be
plotted horizontally.}
\item{shift}{If TRUE, shift the first marker on each chromosome to be
at 0 cM.}
\item{show.marker.names}{If TRUE, marker names are included.}
\item{alternate.chrid}{If TRUE and more than one chromosome is
plotted, alternate the placement of chromosome
axis labels, so that they may be more easily distinguished.}
\item{\dots}{Passed to \code{\link[graphics]{plot}}.}
}
\value{None.}
\details{
Plots the genetic map for each chromosome, or a comparison of the
genetic maps if two maps are given.
For a sex-specific map, female and male maps are plotted against one
another. For two sex-specific maps, the two female maps are plotted
against one another and the two male maps are plotted against one
another.
}
\examples{
data(fake.bc)
\dontshow{fake.bc <- subset(fake.bc, chr=18:19)}
plot.map(fake.bc)
plot.map(fake.bc,horizontal=TRUE)
newmap <- est.map(fake.bc)
plot(newmap)
plot.map(fake.bc, newmap)
plot.map(fake.bc, show.marker.names=TRUE)
}
\seealso{ \code{\link[qtl]{est.map}}, \code{\link[qtl]{plot.cross}} }
\author{Karl W Broman, \email{kbroman@biostat.wisc.edu} }
\keyword{hplot}
|