Gets the cell indices unit by unit of all or a subset of the units.
# S3 method for AffymetrixCdfFile
getCellIndices(this, units=NULL, ..., useNames=TRUE, unlist=FALSE, force=FALSE,
cache=TRUE, verbose=FALSE)
Returns the list
structure returned by
readCdfCellIndices
.
The units of interest. If NULL
, all units are considered.
Additional arguments passed to
readCdfCellIndices
.
If TRUE
, element names are returned, otherwise not.
If TRUE
, the unlisted result is returned. Using this
argument is more memory efficient that calling unlist
()
afterwards.
If TRUE
, cached values are ignored.
If TRUE
, results are cached, if not too large.
A logical
or Verbose
.
Note, that it is much more memory efficient to do
getCellIndices(cdf, useNames=FALSE, unlist=TRUE)
compare with unlist(getCellIndices(cdf), use.names=FALSE)
.
See *setRestructor()
to set a default re-constructor for
the returned CDF structure.
For more information see AffymetrixCdfFile
.