Install the R Package "arrayQualityMetrics"
Posted on Apr 11, 2012 in Programming
Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.
I had to use the R package "arrayQualityMetrics" to check the quality of some gene chips. Installing this package in Linux takes a few steps. The following is the brief instruction on how to install R package "arayQualityMetrics" in Debian.
# install the graphics library cairo
sudo apt-get install libcairo2-dev
# install X toolkit intrinsiscs development files
sudo apt-get install libxt-dev
# install development files for the Gnome XML library
sudo apt-get install libxml2-dev
# if you have installed BiocInstaller
library(BiocInstaller)
biocLite('arrayQualityMetrics')
# if you haven't installed R package BiocInstaller
source("http://bioconductor.org/biocLite.R")
biocLite('arrayQualityMetrics')
Installing R package "arrayQualityMetrics" takes a while, so be patient.