679e2352 |
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/seuratFunctions.R
|
0eafe06c |
\name{runSeuratJackStraw}
\alias{runSeuratJackStraw}
\title{runSeuratJackStraw
|
679e2352 |
Compute jackstraw plot and store the computations in the input sce object}
\usage{
|
0eafe06c |
runSeuratJackStraw(
|
b827eb5d |
inSCE,
useAssay,
dims = NULL,
numReplicate = 100,
propFreq = 0.025,
externalReduction = NULL
)
|
679e2352 |
}
\arguments{
|
55429919 |
\item{inSCE}{(sce) object on which to compute and store jackstraw plot}
|
2939876e |
\item{useAssay}{Specify name of the assay to use for scaling. Assay name
provided against this parameter is scaled by the function and used
for the computation of JackStraw scores along with the reduced dimensions
specified by the \code{dims} parameter.}
|
679e2352 |
|
3ce6e91e |
\item{dims}{Number of components to test in Jackstraw. If \code{NULL}, then
all components are used. Default \code{NULL}.}
|
f76ee9fd |
|
3ce6e91e |
\item{numReplicate}{Numeric value indicating the number of replicate
samplings to perform.
Default value is \code{100}.}
|
b827eb5d |
|
3ce6e91e |
\item{propFreq}{Numeric value indicating the proportion of data to randomly
permute for each replicate.
Default value is \code{0.025}.}
|
b827eb5d |
|
3ce6e91e |
\item{externalReduction}{Pass DimReduc object if PCA/ICA computed through
other libraries. Default \code{NULL}.}
|
679e2352 |
}
\value{
|
3ce6e91e |
Updated \code{SingleCellExperiment} object with jackstraw
computations stored in it
|
679e2352 |
}
\description{
|
0eafe06c |
runSeuratJackStraw
|
679e2352 |
Compute jackstraw plot and store the computations in the input sce object
}
|
0ccddee1 |
\examples{
data(scExample, package = "singleCellTK")
\dontrun{
|
0eafe06c |
sce <- runSeuratNormalizeData(sce, useAssay = "counts")
sce <- runSeuratFindHVG(sce, useAssay = "counts")
sce <- runSeuratScaleData(sce, useAssay = "counts")
sce <- runSeuratPCA(sce, useAssay = "counts")
sce <- runSeuratJackStraw(sce, useAssay = "counts")
|
0ccddee1 |
}
}
|