Thank you very much. I will try to use lumi.
Need help in preprocessing Illumina HumanHT-12 V4.0 expression beadchip
Dear all,
So far, I've been working with Affymetrix-based microarray. Nevertheless, my new project requires processing the data generated from Illumina HumanHT-12 V4.0 expression beadchip. Please let me know or give me some tips about what should I do to get a ready-to-use spreadsheet file from the raw data (eg., GSE65517, gathered from GEO) for further data processing and analysis.
I took a look at the user's guide of limma and google but it's not very helpful for me.
Thank you.
• 5,657 views
•
link
1 answer
You may use lumi R package http://bioconductor.org/packages/release/bioc/html/lumi.html to process Illumina raw data.
For example
## reads input file
file.lumi <- lumiR(file)
##Generate expression values
lumiExpr <- lumiExpresso(file.lumi, bg.correct = TRUE,
normalize = TRUE, verbose = TRUE)
exprs <- exprs(lumiExpr)
## generate p-values
pvalue <- detection(lumiExpr)
For more details check lumi R package given above.
• 0 views
•
link
• 0 views
•
link
Log in to answer this question.