processAgilent | R Documentation |
This function process TXT files and normalize expression data
processAgilent(dir, samples = NULL, greenOnly)
dir |
The path to the directory containing TXT files. |
samples |
A vector of samples IDs. If NULL, the function will automatically detect the samples in the directory. |
greenOnly |
Logical, for use with source, should the green (Cy3) channel only be read, or are both red and green required. |
Read and normalize expression data for agilent using limma normexp, loess, and quantile methods
A matrix of normalized expression data. Rows are probes and columns are samples.
library(RCPA)
geoId <- "GSE28522"
downloadPath <- file.path(tempdir(), geoId)
fileList <- RCPA::downloadGEO(GEOID = geoId, protocol = "agilent",
platform ="GPL4133", destDir = downloadPath)
expression <- RCPA::processAgilent(downloadPath, greenOnly = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.