R library/package for pairwise differential expression for microarray data?
1
1
Entering edit mode
9.0 years ago
-5¢ ▴ 10

Does anyone know of a reliable package for doing pairwise DE analysis on microarray data in the form of an ExpressionSet object? I've used edgeR before for doing pairwise comparison with rna-seq, but I'm a little new to this and can't really find anything to do it on affy data specifically...

microarray affy differential expression • 2.9k views
ADD COMMENT
2
Entering edit mode

Did you try Limma ?

ADD REPLY
3
Entering edit mode
9.0 years ago

I use samr:

R. Tibshirani, G. Chu, Balasubramanian Narasimhan and Jun Li (2011). samr: SAM: Significance Analysis of Microarrays. R package version 2.0. http://CRAN.R-project.org/package=samr

Expression data are a matrix E, with identifiers PROBE_IDENTIFIERS and symbols GENE_SYMBOLS, and labels indicating pairs. Labels are integers starting at 1, with positive or negative indicating paired samples. Works for any array (or indeed any matrix of numbers).

data = list(x=data.matrix(E),
            y=labels,
            geneid=PROBE_IDENTIFIERS
            genenames = GENE_SYMBOLS,
            logged2=TRUE)
samr.obj = samr(data, resp.type="Two class paired", nperms=100)
ADD COMMENT
0
Entering edit mode

thanks very much!

ADD REPLY
0
Entering edit mode

You're very welcome. If that answers your question, please mark the question as answered.

ADD REPLY

Login before adding your answer.

Traffic: 2583 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6