CompareValues.Exp {MARVEL} | R Documentation |
Differential gene expression analysis
Description
Performs differential gene expression analysis between 2 groups of cells.
Usage
CompareValues.Exp(
MarvelObject,
cell.group.g1 = NULL,
cell.group.g2 = NULL,
downsample = FALSE,
seed = 1,
min.cells = 25,
pct.cells = NULL,
method,
method.adjust,
show.progress = TRUE,
nboots = 1000,
custom.gene_ids = NULL,
mast.method = "bayesglm",
mast.ebayes = TRUE
)
Arguments
MarvelObject |
Marvel object. S3 object generated from |
cell.group.g1 |
Vector of character strings. Cell IDs corresponding to Group 1 (reference group). |
cell.group.g2 |
Vector of character strings. Cell IDs corresponding to Group 2. |
downsample |
Logical value. If set to |
seed |
Numeric value. The seed number for the random number generator to ensure reproducibility during during down-sampling of cells when |
min.cells |
Numeric value. The minimum no. of cells expressing the gene for the gene to be included for differential splicing analysis. |
pct.cells |
Numeric value. The minimum no. of cells expressing the gene for the gene to be included for differential splicing analysis. If |
method |
Character string. Statistical test to compare the 2 groups of cells. |
method.adjust |
Character string. Adjust p-values for multiple testing. Options available as per |
show.progress |
Logical value. If set to |
nboots |
Numeric value. When |
custom.gene_ids |
Character string. Instead of specified the genes to include for DE analysis with |
mast.method |
Character string. As per the |
mast.ebayes |
Logical value. As per the |
Value
An object of class S3 new slot MarvelObject$DE$Exp$Table
.
Examples
marvel.demo <- readRDS(system.file("extdata/data", "marvel.demo.rds", package="MARVEL"))
# Define cell groups for analysis
df.pheno <- marvel.demo$SplicePheno
cell.group.g1 <- df.pheno[which(df.pheno$cell.type=="iPSC"), "sample.id"]
cell.group.g2 <- df.pheno[which(df.pheno$cell.type=="Endoderm"), "sample.id"]
# DE
marvel.demo <- CompareValues.Exp(MarvelObject=marvel.demo,
cell.group.g1=cell.group.g1,
cell.group.g2=cell.group.g2,
min.cells=5,
method="t.test",
method.adjust="fdr",
show.progress=FALSE
)
# Check output
head(marvel.demo$DE$Exp$Table)