Please redirect to the official www.qtlbim.org page for the most up-to-date information on R/qtlbim. We are developing a Frequently Asked Questions page. The CRAN contributed package page is http://cran.us.r-project.org/web/packages/qtlbim/
NOTE: This pages serves for three related pieces of software. The first two rely on R/qtl (Broman et al. 2003 Bioinformatic), also available from CRAN. It is assumed that you know how to create a cross object using R/qtl.
We are developing a Frequently Asked Questions page. For those eager to get going, look at the vignettes that come with the package. And you can try the following:
library(qtlbim) demo(qb.tour)To run your cross object without further ado:
> library(qtlbim) ## Set up genotype probabilities at pseudomarkers. > cross <- qb.genoprob(cross, step = 2) ## Create MCMC samples within R. > myqb <- qb.mcmc(cross, pheno.col = 1) ## Summary and plot. > summary(myqb) > plot(myqb)
> library(bim) ## Create MCMC samples within R. > mybim <- run.bmapqtl(cross, pheno = 1) ## Summary and plot. > summary(mybim) > plot(mybim)
> library(bim) ## Initialize options. > bmapqtl.options() ## Write options to file "nval.dat". You can modify values using ## write.bmapqtl() or later edit the file by hand. > write.bmapqtl() ## Read your Bmapqtl file created from QTLCart. > mybim <- read.bim(".", "yourbmapqtlfilename") ## Summary and plot. > summary(mybim) > plot(mybim)