Entering edit mode
Hi All,
I am using 'affy' and 'limma' to analyze affymetrix data.
Simplified code:
mydata <- ReadAffy()
esetRMA <- rma(mydata)
sampletype <- c('1','1','1','2','2','2','3','3','3','4','4','4')
group <-factor(sampletype)
design<- model.matrix(~0+group)
fit <- lmFit(esetRMA, design)
contrast.matrix<-makeContrasts(B-A,C-A,D-A, levels=design)
fit2<- contrasts.fit(fit,contrast.matrix)
fit2 <- eBayes(fit2)
results.default <- decideTests(fit2)
I get the results without any problem. But what I need is expression
intensity of probes across all samples to be included in the results.
I
tried:
Intensity <- (2^(exprs(esetRMA)))
But cannot fit data to the results
fData(results.default) <- Intensity
Could somebody please tell me how can include expression intensities
in
the 'decideTests' output?
AK