a b/man/getDiffExp.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/differentialexpression.R
3
\name{getDiffExp}
4
\alias{getDiffExp}
5
\title{getDiffExp}
6
\usage{
7
getDiffExp(
8
  object,
9
  assay = NULL,
10
  group.by,
11
  group.base = NULL,
12
  covariates = NULL,
13
  method = "DESeq2"
14
)
15
}
16
\arguments{
17
\item{object}{a VoltRon object}
18
19
\item{assay}{assay name (exp: Assay1) or assay class (exp: Visium, Xenium), see \link{SampleMetadata}. 
20
if NULL, the default assay will be used, see \link{vrMainAssay}.}
21
22
\item{group.by}{the categorical variable from metadata to get differentially expressed features across}
23
24
\item{group.base}{Optional, the base category in \code{group.by} which is used as control group}
25
26
\item{covariates}{the covariate variable for the design formula}
27
28
\item{method}{the method for DE analysis, e.g. DESeq2}
29
}
30
\description{
31
Get differential expression with DESeq2
32
}