Microarray data processing with R/Bioconductor

  • a large number of life sciences software implemented in R

  • an extensive collection of experimental and annotation data that relate to the analysis software.

Documentation

  • The packages are written, documented and supported according to consistent standards.

  • Each package has a website. For example see:

affy

affydata

  • both pdf documentation and example R scripts exits.

Mailing List

Instructions on joining the mailing list

IMPORTANT:Carefully read the posting guide and follow the instructions.

  • The list is high-traffic and widely read so be careful with postings.

UseExample

#Connect to rous.mit.edu and start R
R
#check available packages:
library()
#load affdata
library(affydata)
#Run some of the commands
data(Dilution)
ls()
Dilution
class(Dilution)
expressionData<-exprs(Dilution)
class(expressionData)
expressionData[1:3,]
log2(expressionData[1:3,])
round(log2(expressionData[1:3,]), digits=2)

Processing Microarray Data with r/bioconductor

The following series of commands can be used to process array data with gcrma and do differential expression testing with LPE:

Last updated

Was this helpful?