draw.map {onemap} | R Documentation |
Provides a simple draw of a genetic map.
draw.map(map.list, horizontal=FALSE, names=FALSE, grid=FALSE, cex.mrk=1, cex.grp=.75)
map.list |
a map, i.e. an object of class |
horizontal |
if |
names |
if |
grid |
if |
cex.mrk |
the magnification to be used for markers. |
cex.grp |
the magnification to be used for group axis annotation. |
Marcelo Mollinari, mmollina@usp.br
## Not run: #outcross example data(example.out) twopt <- rf.2pts(example.out) lg<-group(make.seq(twopt, "all")) maps<-vector("list", lg$n.groups) for(i in 1:lg$n.groups) maps[[i]]<- make.seq(order.seq(input.seq= make.seq(lg,i),twopt.alg = "rcd"), "force") draw.map(maps, grid=TRUE) draw.map(maps, grid=TRUE, horizontal=TRUE) #F2 example data(fake.f2.onemap) twopt<-rf.2pts(fake.f2.onemap) lg<-group(make.seq(twopt, "all")) maps<-vector("list", lg$n.groups) for(i in 1:lg$n.groups) maps[[i]]<- make.seq(order.seq(input.seq= make.seq(lg,i),twopt.alg = "rcd"), "force") draw.map(maps, grid=TRUE) draw.map(maps, grid=TRUE, horizontal=TRUE) ## End(Not run)