The above GSE ID given GSE47910 has agilent microarray raw data in .txt file for every sample (ie, 498 samples here) As the blow code works on affymetrix arrays-
> data = ReadAffy(celfile.path=celpath)
> data.rma = rma(data)
> data.matrix = exprs(data.rma)
> write.table(data.matrix, file='/mnt/store_room/Dataset1/processing/validation/newRMAGSE65663.txt')
I need a similar RMA normalization code for agilent microarrays. if not RMA, then any other normalization method that gives out a matrix with all samples in columns and probes_IDs in rows with normalised values given. I am new to microarray analysis. please help