Articles - R

Install samr package

  |   4065  |  Post a comment  |  R
SAM (Significance Analysis of Microarrays) is a statistical method to identify differentially expressed genes using microarray experiment.

To see the official website click here

To use SAM in R, install the package samr :

Code R :
 
install.packages('samr')
 


samr package depends on the 'inpute' package which can not be installed directly from R terminal (R 2.15.1 version).

inpute package is available from Bioconductor web site

To install the package inpute, use the following code in R :

Code R :
 
source("http://bioconductor.org/biocLite.R")
biocLite("impute")