forked from satijalab/seurat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESeq2DETest.Rd
53 lines (46 loc) · 1.6 KB
/
DESeq2DETest.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
48
49
50
51
52
53
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/differential_expression.R
\name{DESeq2DETest}
\alias{DESeq2DETest}
\title{Differential expression using DESeq2}
\usage{
DESeq2DETest(object, cells.1, cells.2, min.cells = 3, genes.use = NULL,
assay.type = "RNA", ...)
}
\arguments{
\item{object}{Seurat object}
\item{cells.1}{Group 1 cells}
\item{cells.2}{Group 2 cells}
\item{min.cells}{Minimum number of cells expressing the gene in at least one
of the two groups}
\item{genes.use}{Genes to use for test}
\item{assay.type}{Type of assay to fetch data for (default is RNA)}
\item{...}{Extra parameters to pass to DESeq2::results}
}
\value{
Returns a p-value ranked matrix of putative differentially expressed
genes.
}
\description{
Identifies differentially expressed genes between two groups of cells using
DESeq2
}
\details{
This test does not support pre-filtering of genes based on average difference
(or percent detection rate) between cell groups. However, genes may be
pre-filtered based on their minimum detection rate (min.pct) across both cell
groups. To use this method, please install DESeq2, using the instructions at
https://bioconductor.org/packages/release/bioc/html/DESeq2.html
}
\examples{
\dontrun{
pbmc_small
DESeq2DETest(pbmc_small, cells.1 = WhichCells(object = pbmc_small, ident = 1),
cells.2 = WhichCells(object = pbmc_small, ident = 2))
}
}
\references{
Love MI, Huber W and Anders S (2014). "Moderated estimation of
fold change and dispersion for RNA-seq data with DESeq2." Genome Biology.
https://bioconductor.org/packages/release/bioc/html/DESeq2.html
}