#' Sample data
#'
#' Metadata that describes the samples.
#'
#' This is a complement to the standard
#' [`colData()`][SummarizedExperiment::colData()] function, but improves support
#' for accessing sample metadata for datasets where multiple items in the
#' columns map to a single sample (e.g. cells for a single-cell RNA-seq
#' experiment).
#'
#' @export
#' @inheritParams AcidRoxygen::params
#'
#' @return `DataFrame`.
#'
#' @examples
#' showMethods("sampleData")
setGeneric(
name = "sampleData",
def = function(object, ...) {
standardGeneric("sampleData")
}
)
#' @rdname sampleData
#' @export
setGeneric(
name = "sampleData<-",
def = function(object, ..., value) {
standardGeneric("sampleData<-")
}
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.