https://github.com/satijalab/seurat
Raw File
Tip revision: b51801bc4b1a66aed5456473c9fe0be884994c93 authored by satijalab on 17 April 2020, 17:37:59 UTC
Merge pull request #2868 from satijalab/develop
Tip revision: b51801b
PCASigGenes.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/dimensional_reduction.R
\name{PCASigGenes}
\alias{PCASigGenes}
\title{Significant genes from a PCA}
\usage{
PCASigGenes(
  object,
  pcs.use,
  pval.cut = 0.1,
  use.full = FALSE,
  max.per.pc = NULL
)
}
\arguments{
\item{object}{Seurat object}

\item{pcs.use}{PCS to use.}

\item{pval.cut}{P-value cutoff}

\item{use.full}{Use the full list of genes (from the projected PCA). Assumes
that \code{ProjectDim} has been run. Currently, must be set to FALSE.}

\item{max.per.pc}{Maximum number of genes to return per PC. Used to avoid genes from one PC dominating the entire analysis.}
}
\value{
A vector of genes whose p-values are statistically significant for
at least one of the given PCs.
}
\description{
Returns a set of genes, based on the JackStraw analysis, that have
statistically significant associations with a set of PCs.
}
\examples{
PCASigGenes(pbmc_small, pcs.use = 1:2)

}
\seealso{
\code{\link{ProjectDim}} \code{\link{JackStraw}}
}
back to top