Usage
makeVectorPackage(files, batch.id, version, maintainer, species, annotation, packageName, background="rma", normalize="quantile", normVec=NULL, type="AffyBatch", file.dir=".", output.dir=".", unlink=TRUE, verbose=TRUE)
makeVectorsAffyBatch(files, batch.id, background="rma", normalize="quantile", normVec=NULL, cdfname=NULL, file.dir=".", verbose=TRUE)
makeVectorsFeatureSet(files, batch.id, pkgname, background="rma", normalize="quantile", normVec=NULL, file.dir=".", verbose=TRUE)
Arguments
files
the CEL file names from which to create the vectors
batch.id
a vector of batch ids used to compute within and
between batch variances
background
type of background correction to perform: either
"none" or "rma".
normalize
type of normalization to perform: either "none" or
"quantile".
normVec
normalization vector. If NULL, a normalization vector
is created based on the given CEL files. Ignored if normalize is
"none".
annotation
the "cdfname" or "pkgname" to be passed to either
makeVectorsAffyBatch or makeVectorsFeatureSet depending on
the value of "type".
cdfname
used to specify the name of an alternative cdf package.
Passed to the ReadAffy function. If set to "NULL", then the usual
cdf package based on Affymetrix's mappings will be used.
pkgname
alternative data package to be loaded. Passed to the
read.celfiles function. If set to "NULL", then the default package
will be used.
packageName
name of the package to be created
version
the version number of the package to be created
maintainer
typically your name
species
species of samples in object
type
the type of data object to be loaded. Must be one of:
AffyBatch, FeatureSet.
file.dir
directory in which the CEL files are located
output.dir
directory in which to create the package
unlink
logical value. If TRUE and output.dir already contains a
file or directory with the same name as the package being generated,
then try to unlink (remove) it.
verbose
logical value. If TRUE then some messages are displayed
while the function runs