I have a large amount of Agilent data (580 text files that are ~200 MB in size each) that I'd like to normalize. I've run into a problem in that my machine (with 8 GB of memory) still runs out of memory when I try to read the files using marray in order to geneerate an expression set for normalization. I don't need the expression set, just the normalized output--is there an analogous program for Agilent data like justRMA is used for Affy data?
Tell me more
×
Biology Stack Exchange is a question and answer site for
biology researchers, academics, and students. It's 100% free, no registration required.
closed as off topic by terdon, jonsca, Rory M♦ Feb 1 at 16:03
Questions on Biology Stack Exchange are expected to relate to biology within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
You might want to consider using a one-sample-at-a-time normalization scheme like frozenRMA: http://www.bioconductor.org/packages/2.11/bioc/html/frmaTools.html |
|||
|
|
for n in *.data; do Rscript script.R $n > $n.norm; done. – terdon Jan 31 at 18:03