Disclaimer The source code and software distributed in this web page has no express or implied warranty. Use at your own risk.
Download On computers where a R GUI is available (Mac OS X and Windows), you may find it convenient to install via the graphical "Package installer" located in the "Packages and Data" menu.
The following steps will work if the graphical interface is unavailable or broken for some reason.
chooseCRANmirror()If this does not work for some reason use
chooseCRANmirror(graphics=F)
install.packages("qtlDesign",type="source")
If you do not have administrative privileges on your computer, you
will have to choose a directory where you have write permissions.
For example, Mac OS X users may do something like:
install.packages("qtlDesign",lib="/Users/john/Rlibs",type="source")
which means that package will be installed in the directory "Rlibs" of
the user "john" (assuming you are "John"). Choose a directory with a
different name than "Rlibs" if you like. Windows users can similarly
specify a directory. It will look something like "c:\john\rlibs".
library(qtlDesign)If you installed the library into a non-system directory, then you have to specify the location of the library. For example, if you do not have administrative privileges and installed the library in "/Users/john/Rlibs", then you would enter
library(qtlDesign, lib.loc="/Users/john/Rlibs")
R CMD INSTALL qtlDesign_0.91.tar.gzor
R CMD INSTALL --library="/Users/john/Rlibs" qtlDesign_0.91.tar.gzif you don't have administrative privileges on your computer and have to install in a user directory ("/Users/john/Rlibs" in this example).
Help Our paper
gives an overview of the software and the theory underlying it. The
software manual
lists the functions and their usage.
When you have R installed, you can get a list of the functions by typing
library(help=qtlDesign)or
library(help=qtlDesign,lib="/Users/john/Rlibs")if R/qtlDesign is installed in the library "/Users/john/Rlibs".
powercalc you can type
?powercalc
And please do not hesitate to email me
(sen@biostat.ucsf.edu) if you find bugs or have questions or comments.