forked from satijalab/seurat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPCASigGenes.Rd
43 lines (38 loc) · 1.05 KB
/
PCASigGenes.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
% 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{
data("pbmc_small")
PCASigGenes(pbmc_small, pcs.use = 1:2)
}
\seealso{
\code{\link{ProjectDim}} \code{\link{JackStraw}}
}
\concept{dimensional_reduction}