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
|
#' A small example version of the PBMC dataset
#'
#' A subsetted version of 10X Genomics' 3k PBMC dataset
#'
#' @format A Seurat object with the following slots filled
#' \describe{
#' \item{assays}{
#' \itemize{Currently only contains one assay ("RNA" - scRNA-seq expression data)
#' \item{counts - Raw expression data}
#' \item{data - Normalized expression data}
#' \item{scale.data - Scaled expression data}
#' \item{var.features - names of the current features selected as variable}
#' \item{meta.features - Assay level metadata such as mean and variance}
#' }}
#' \item{meta.data}{Cell level metadata}
#' \item{active.assay}{Current default assay}
#' \item{active.ident}{Current default idents}
#' \item{graphs}{Neighbor graphs computed, currently stores the SNN}
#' \item{reductions}{Dimensional reductions: currently PCA and tSNE}
#' \item{version}{Seurat version used to create the object}
#' \item{commands}{Command history}
#' }
#' @source \url{https://www.10xgenomics.com/datasets/3-k-pbm-cs-from-a-healthy-donor-1-standard-1-1-0}
#'
"pbmc_small"
|