Diff of /man/preprocessCELFiles.Rd [000000] .. [28aa3b]

Switch to unified view

a b/man/preprocessCELFiles.Rd
1
% Generated by roxygen2 (4.1.1): do not edit by hand
2
% Please edit documentation in R/preprocessCELFiles.R
3
\name{preprocessCELFiles}
4
\alias{preprocessCELFiles}
5
\title{RMA preprocess CEL files}
6
\usage{
7
preprocessCELFiles(cel_files, cdf = c("affy", "brainarray"), target,
8
  version = getLatestVersion(), background = TRUE, normalize = TRUE)
9
}
10
\arguments{
11
\item{cel_files}{A character vector of .CEL files.}
12
13
\item{cdf}{A character specifying the CDF type to use. Should be either
14
\code{"brainarray"} or \code{"affy"}.}
15
16
\item{target}{Specifies the "target" CDF to use depending on \code{cdf}.
17
If \code{cdf} is \code{"affy"} then \code{target} is e.g. \code{"core"}.
18
If \code{cdf} is \code{"brainarray"} then \code{target} is
19
e.g. \code{"ensg"}, \code{"entrez"}.
20
See \code{listTargets()} to list the available targets.}
21
22
\item{version}{A character giving the brainarray version to be used.
23
Only used if \code{cdf} is \code{"brainarray"}. See \code{listVersions()}.}
24
25
\item{background}{boolean. Should RMA background correction be performed?}
26
27
\item{normalize}{boolean. Should RMA normalization be performed?}
28
}
29
\value{
30
An expression set object.
31
}
32
\description{
33
General function for RMA processing microarray data. Automatically downloads
34
custom Brainarray chip definition files (cdf) if wanted.
35
}
36