readCelfiles: Read '.CEL' files into a matrix

Description Usage Arguments Details Value Author(s) References See Also Examples

Description

Affymetrix .CEL files given in the argument filenames are read into a matrix in R.

Usage

1
2
3
readCelfiles(filenames, cdfname = NULL, rm.mask = FALSE,
  rm.outliers = FALSE, rm.extra = FALSE, verbose = FALSE,
  which = c("pm", "mm", "both"))

Arguments

filenames

File names in a character vector.

cdfname

Used to specify the name of an alternative cdf package. If set to NULL, then the usual cdf package based on Affymetrix' mappings will be used.

rm.mask

Should the spots marked as 'MASKS' set to NA?

rm.outliers

Should the spots marked as 'OUTLIERS' set to NA?

rm.extra

If TRUE, then overrides what is in rm.mask and rm.oultiers.

verbose

logical. Should file names be written as they are read into R.

which

A character determining if pm, mm, or both probes be stored in matrices.

Details

Load .CEL files into a matrix.

Value

Expression matrix consisting of all pm probes.

Author(s)

Steffen Falgreen <sfl (at) rn.dk>
Anders Ellern Bilgrau <abilgrau (at) math.aau.dk>

References

Reference to the hemaClass.com paper

See Also

For preprocessing of the cel files see rmaPreprocessing.

Examples

1
2
3
4
5
# Read hgu133plus2 .CEL files into R

files <- dir(system.file("extdata/celfiles", package = "hemaClass"),
             full.names = TRUE)
CEL.data <- readCelfiles(files)

oncoclass/hemaClass documentation built on May 24, 2019, 2:19 p.m.