https://github.com/satijalab/seurat
Raw File
Tip revision: ff03fdf21f1b8fea9ee247d0fd83df5811507027 authored by AustinHartman on 05 December 2022, 22:48:27 UTC
Merge branch 'master' into release/4.3.0
Tip revision: ff03fdf
MULTIseqDemux.Rd
% 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}
back to top