January 2017

software setup

install R

R: powerful programming language for data exploration, visualization, and analysis

install Rstudio

install R packages

  • open up Rstudio, which opens R
  • On console, type
install.packages("qtl", "rrBLUP")

This will install the two main packages we will use.

qtl: R package help

mixed model software for QTL and GWA

rrBLUP: R package help

R/qtl2scan

qtl2scan

  • EMMA adapted to R/qtl2 package
  • leave out one chromosome method
    • calc_kinship with type="loco" to compute \(K\)
    • scan1 with kinship option to fit mixed model
  • Karl Broman (UW-Madison) R package suite

other useful R packages

There is a very useful set of R packages that were recently developed, which are packaged together as the "Tidyverse" (http://tidyverse.org/). We will not use these directly, but they are worth knowing about. To install them type the following on the Rstudio console:

install.packages(tidyverse)

This will install a number of small packages on your system.

For the advanced R/qtl2 section, there are further packages. We will discuss that later.

organizing your work

communication opportunities