forked from satijalab/seurat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssay-class.Rd
31 lines (23 loc) · 958 Bytes
/
Assay-class.Rd
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/objects.R
\docType{class}
\name{Assay-class}
\alias{Assay-class}
\alias{Assay}
\title{The Assay Class}
\description{
The Assay object is the basic unit of Seurat; each Assay stores raw, normalized, and scaled data
as well as cluster information, variable features, and any other assay-specific metadata.
Assays should contain single cell expression data such as RNA-seq, protein, or imputed expression
data.
}
\section{Slots}{
\describe{
\item{\code{counts}}{Unnormalized data such as raw counts or TPMs}
\item{\code{data}}{Normalized expression data}
\item{\code{scale.data}}{Scaled expression data}
\item{\code{key}}{Key for the Assay}
\item{\code{var.features}}{Vector of features exhibiting high variance across single cells}
\item{\code{meta.features}}{Feature-level metadata}
\item{\code{misc}}{Utility slot for storing additional data associated with the assay}
}}