forked from satijalab/seurat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMULTIseqDemux.Rd
47 lines (40 loc) · 1.27 KB
/
MULTIseqDemux.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
41
42
43
44
45
46
47
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/preprocessing.R
\name{MULTIseqDemux}
\alias{MULTIseqDemux}
\title{Demultiplex samples based on classification method from MULTI-seq (McGinnis et al., bioRxiv 2018)}
\usage{
MULTIseqDemux(
object,
assay = "HTO",
quantile = 0.7,
autoThresh = FALSE,
maxiter = 5,
qrange = seq(from = 0.1, to = 0.9, by = 0.05),
verbose = TRUE
)
}
\arguments{
\item{object}{Seurat object. Assumes that the specified assay data has been added}
\item{assay}{Name of the multiplexing assay (HTO by default)}
\item{quantile}{The quantile to use for classification}
\item{autoThresh}{Whether to perform automated threshold finding to define the best quantile. Default is FALSE}
\item{maxiter}{Maximum number of iterations if autoThresh = TRUE. Default is 5}
\item{qrange}{A range of possible quantile values to try if autoThresh = TRUE}
\item{verbose}{Prints the output}
}
\value{
A Seurat object with demultiplexing results stored at \code{object$MULTI_ID}
}
\description{
Identify singlets, doublets and negative cells from multiplexing experiments. Annotate singlets by tags.
}
\examples{
\dontrun{
object <- MULTIseqDemux(object)
}
}
\references{
\url{https://www.biorxiv.org/content/10.1101/387241v1}
}
\concept{preprocessing}