BioPathways {MARVEL} | R Documentation |
Pathway enrichment analysis
Description
Performs pathway enrichment analysis on differentially spliced genes or user-specified custom set of genes.
Usage
BioPathways(
MarvelObject,
method = NULL,
pval = NULL,
delta = 0,
n.top = NULL,
method.adjust = "fdr",
custom.genes = NULL,
species = "human"
)
Arguments
MarvelObject |
Marvel object. S3 object generated from |
method |
Character string. The statistical method used for differential splicing analysis. |
pval |
Numeric value. Alternative to |
delta |
Numeric value. The absolute difference between the means PSI values of cell group 1 and 2, above which, the splicing event is considered differentially spliced and their corresponding genes are included for gene ontology analysis. |
n.top |
Numeric value. Alternative to |
method.adjust |
Character string. Adjust p-values for multiple testing. Options available as per |
custom.genes |
Character strings. Alternative to |
species |
Character strings. Takes the value |
Value
An object of class S3 with new slot MarvelObject$DE$BioPathways$Table
.
Examples
marvel.demo <- readRDS(system.file("extdata/data", "marvel.demo.rds", package="MARVEL"))
marvel.demo <- BioPathways(MarvelObject=marvel.demo,
method="ad",
custom.genes=c("RPL26", "SNRPN")
)