| plot.map {qtl} | R Documentation |
Plot genetic map of marker locations for all chromosomes.
plot.map(x,map2,horizontal=FALSE,...)
x |
A list of length n.chr, each component being a vector of
marker locations. A cross object may be given instead, in
which case the genetic map it contains is used. |
map2 |
An optional second genetic map with the same number of
chromosomes and markers as the first. As with map, a
cross object may be given instead. If this argument is
given, a comparison of the two genetic maps is plotted.
Note: For sex-specific maps, if two maps are to be plotted,
we create two plots: the female maps against each other and the male
maps against each other. |
horizontal |
Specifies whether the chromosomes should be plotted horizontally. |
... |
Ignored at this point. |
Plots the genetic map for each chromosome, or a comparison of the genetic maps if two maps are given.
Karl W Broman,
kbroman@jhsph.edu
http://biosun01.biostat.jhsph.edu/~kbroman/software/qtl.html
data(fake.bc) plot.map(fake.bc) plot.map(pull.map(fake.bc), horizontal=TRUE) newmap <- est.map(fake.bc) plot.map(fake.bc,newmap) plot.map(pull.map(fake.bc),newmap,horizontal=TRUE)