processAffymetrix | R Documentation |
This function process CEL files and normalize expression data
processAffymetrix(dir, samples = NULL)
dir |
The path to the directory containing CEL files. |
samples |
A vector of samples IDs. If NULL, the function will automatically detect the samples in the directory. |
Read and normalize expression data for affymetrix using RMA method
A matrix of normalized expression data. Rows are probes and columns are samples.
library(RCPA)
geoId <- "GSE59761"
downloadPath <- file.path(tempdir(), geoId)
fileList <- RCPA::downloadGEO(GEOID = geoId, protocol = "affymetrix",
platform ="GPL16311", destDir = downloadPath)
# process only 3 samples
expression <- RCPA::processAffymetrix(downloadPath,
samples = c("GSM1446171", "GSM1446172", "GSM1446173"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.