forked from satijalab/seurat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDietSeurat.Rd
40 lines (33 loc) · 1.02 KB
/
DietSeurat.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
31
32
33
34
35
36
37
38
39
40
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/objects.R
\name{DietSeurat}
\alias{DietSeurat}
\title{Slim down a Seurat object}
\usage{
DietSeurat(
object,
counts = TRUE,
data = TRUE,
scale.data = FALSE,
features = NULL,
assays = NULL,
dimreducs = NULL,
graphs = NULL
)
}
\arguments{
\item{object}{Seurat object}
\item{counts}{Preserve the count matrices for the assays specified}
\item{data}{Preserve the data slot for the assays specified}
\item{scale.data}{Preserve the scale.data slot for the assays specified}
\item{features}{Only keep a subset of features, defaults to all features}
\item{assays}{Only keep a subset of assays specified here}
\item{dimreducs}{Only keep a subset of DimReducs specified here (if NULL,
remove all DimReducs)}
\item{graphs}{Only keep a subset of Graphs specified here (if NULL, remove
all Graphs)}
}
\description{
Keep only certain aspects of the Seurat object. Can be useful in functions that utilize merge as
it reduces the amount of data in the merge.
}