1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/internals.R
\docType{methods}
\name{SCE-internals}
\alias{SCE-internals}
\alias{int_colData}
\alias{int_elementMetadata}
\alias{int_metadata}
\alias{int_colData,SingleCellExperiment-method}
\alias{int_elementMetadata,SingleCellExperiment-method}
\alias{int_metadata,SingleCellExperiment-method}
\alias{int_colData<-}
\alias{int_elementMetadata<-}
\alias{int_metadata<-}
\alias{int_colData<-,SingleCellExperiment-method}
\alias{int_elementMetadata<-,SingleCellExperiment-method}
\alias{int_metadata<-,SingleCellExperiment-method}
\alias{colData,SingleCellExperiment-method}
\alias{rowData,SingleCellExperiment-method}
\alias{parallel_slot_names,SingleCellExperiment-method}
\title{Internal SingleCellExperiment functions}
\description{
Methods to get or set internal fields from the SingleCellExperiment class.
Thse functions are intended for package developers who want to add protected fields to a SingleCellExperiment.
They should \emph{not} be used by ordinary users of the \pkg{SingleCellExperiment} package.
}
\section{Getters}{
In the following code snippets, \code{x} is a \linkS4class{SingleCellExperiment}.
\describe{
\item{\code{int_elementMetadata(x)}:}{Returns a \linkS4class{DataFrame} of internal row metadata,
with number of rows equal to \code{nrow(x)}.
This is analogous to the user-visible \code{\link{rowData}}.}
\item{\code{int_colData(x)}:}{Returns a \linkS4class{DataFrame} of internal column metadata,
with number of rows equal to \code{ncol(x)}.
This is analogous to the user-visible \code{\link{colData}}.}
\item{\code{int_metadata(x)}:}{Returns a list of internal metadata, analogous to the user-visible \code{\link{metadata}}.}
}
It may occasionally be useful to return both the visible and the internal \code{colData} in a single DataFrame.
This is facilitated by the following methods:
\describe{
\item{\code{rowData(x, ..., internal=FALSE)}:}{Returns a \linkS4class{DataFrame} of the user-visible row metadata.
If \code{internal=TRUE}, the internal row metadata is added column-wise to the user-visible metadata.
A warning is emitted if the user-visible metadata column names overlap with the internal fields.
Any arguments in \code{...} are passed to \code{\link{rowData,SummarizedExperiment-method}}.}
\item{\code{colData(x, ..., internal=FALSE)}:}{Returns a \linkS4class{DataFrame} of the user-visible column metadata.
If \code{internal=TRUE}, the internal column metadata is added column-wise to the user-visible metadata.
A warning is emitted if the user-visible metadata column names overlap with the internal fields.
Any arguments in \code{...} are passed to \code{\link{colData,SummarizedExperiment-method}}.}
}
}
\section{Setters}{
In the following code snippets, \code{x} is a \linkS4class{SingleCellExperiment}.
\describe{
\item{\code{int_elementMetadata(x) <- value}:}{Replaces the internal row metadata with \code{value},
a \linkS4class{DataFrame} with number of rows equal to \code{nrow(x)}.
This is analogous to the user-visible \code{\link{rowData<-}}.}
\item{\code{int_colData(x) <- value}:}{Replaces the internal column metadata with \code{value},
a \linkS4class{DataFrame} with number of rows equal to \code{ncol(x)}.
This is analogous to the user-visible \code{\link{colData<-}}.}
\item{\code{int_metadata(x) <- value}:}{Replaces the internal metadata with \code{value},
analogous to the user-visible \code{\link{metadata<-}}.}
}
}
\section{Comments}{
The internal metadata fields allow easy and extensible storage of additional elements
that are parallel to the rows or columns of a \linkS4class{SingleCellExperiment} class.
This avoids the need to specify new slots and adjust the subsetting/combining code for a new data element.
For example, \code{\link{altExps}} and \code{\link{reducedDims}} are implemented as fields in the internal column metadata.
That these elements are internal is important as this ensures that the implementation details are abstracted away.
Any user interaction with these internal fields should be done via the designated getter and setter methods,
e.g., \code{\link{reducedDim}} and friends for retrieving or modifying reduced dimensions.
This provides developers with more freedom to change the internal representation without breaking user code.
Package developers intending to use these methods to store their own content should read the development vignette for guidance.
}
\examples{
example(SingleCellExperiment, echo=FALSE) # Using the class example
int_metadata(sce)$whee <- 1
}
\seealso{
\code{\link{colData}}, \code{\link{rowData}} and \code{\link{metadata}} for the user-visible equivalents.
}
\author{
Aaron Lun
}
|