I am analysing an Agilent single-color array in order to find differentially expressed genes using limma and following this procedure
targets <- readTargets("targets.txt") rawObj <- read.maimages(targets,source="agilent",green.only=TRUE) Obj.corrected <- backgroundCorrect(rawObj, method="normexp", offset=1) E <- normalizeBetweenArrays(Obj.corrected, method="quantile") E.avg <- avereps(E, ID=E$genes$ProbeName) fit <- lmFit(E.avg,design) cont.matrix <- makeContrasts(group1vsgroup2=Group1-Group2,levels=design) contrast.matrix <- makeContrasts("WT-MUT", levels=design) fit2 <- contrasts.fit(fit,cont.matrix) fit2 <- eBayes(fit2) list<-topTable(fit2)
The problem comes out when I try to plot one heatmap of this gene list that I get from limma, as in Affymetrix analysis, because I don't know how to handle this Agilent expression Elist object (E)
Any ideas?
Thanks seidel, i would try this!