Learn R Programming

EnrichmentBrowser (version 2.2.2)

sbea: Set-based enrichment analysis (SBEA)

Description

This is the main function for the enrichment analysis of gene sets. It implements and wraps existing implementations of several frequently used state-of-art methods and allows a flexible inspection of resulting gene set rankings.

Usage

sbea( method = sbea.methods(), eset, gs, alpha = 0.05, perm = 1000, padj.method = "none", out.file = NULL, browse = FALSE, ... )
sbea.methods()

Arguments

method
Set-based enrichment analysis method. Currently, the following set-based enrichment analysis methods are supported: ‘ora’, ‘safe’, ‘gsea’, ‘samgs’, and ‘ebm’. See Details. For basic ora also set 'perm=0'. Default is ‘ora’. This can also be the name of a user-defined function implementing set-based enrichment. See Details.
eset
Expression set. An object of class ExpressionSet. See read.eset and probe.2.gene.eset for required annotations in the pData and fData slots.
gs
Gene sets. Either a list of gene sets (vectors of KEGG gene IDs) or a text file in GMT format storing all gene sets under investigation.
alpha
Statistical significance level. Defaults to 0.05.
perm
Number of permutations of the expression matrix to estimate the null distribution. Defaults to 1000. For basic ora set 'perm=0'. Using method="gsea" and 'perm=0' invokes the permutation approximation from the npGSEA package.
padj.method
Method for adjusting nominal gene set p-values to multiple testing. For available methods see the man page of the stats function p.adjust. Defaults to'none', i.e. leaves the nominal gene set p-values unadjusted.
out.file
Optional output file the gene set ranking will be written to.
browse
Logical. Should results be displayed in the browser for interactive exploration? Defaults to FALSE.
...
Additional arguments passed to individual sbea methods. This includes currently for ORA:
  • beta: Log2 fold change significance level. Defaults to 1 (2-fold).
  • sig.stat: decides which statistic is used for determining significant DE genes. Options are:
    • 'p' (Default): genes with p-value below alpha.
    • 'fc': genes with abs(log2(fold change)) above beta
    • '&': p & fc (logical AND)
    • '|': p | fc (logical OR)

Value

sbea.methods: a character vector of currently supported methods;sbea: if(is.null(out.file)): an enrichment analysis result object that can be detailedly explored by calling ea.browse and from which a flat gene set ranking can be extracted by calling gs.ranking. If 'out.file' is given, the ranking is written to the specified file.

Details

'ora': overrepresentation analysis, simple and frequently used test based on the hypergeometric distribution (see Goeman and Buhlmann, 2007, for a critical review).

'safe': significance analysis of function and expression, generalization of ORA, includes other test statistics, e.g. Wilcoxon's rank sum, and allows to estimate the significance of gene sets by sample permutation; implemented in the safe package (Barry et al., 2005). 'gsea': gene set enrichment analysis, frequently used and widely accepted, uses a Kolmogorov-Smirnov statistic to test whether the ranks of the p-values of genes in a gene set resemble a uniform distribution (Subramanian et al., 2005).

'samgs': significance analysis of microarrays on gene sets, extends the SAM method for single genes to gene set analysis (Dinu et al., 2007).

'ebm': empirical Brown's method, combines $p$-values of genes in a gene set using Brown's method to combine $p$-values from dependent tests; implemented in the EmpiricalBrownsMethod package.

It is also possible to use additional set-based enrichment methods. This requires to implement a function that takes 'eset', 'gs', 'alpha', and 'perm' as arguments and returns a numeric vector 'ps' storing the resulting p-value for each gene set in 'gs'. This vector must be named accordingly (i.e. names(ps) == names(gs)). See examples.

References

Goeman and Buhlmann (2007) Analyzing gene expression data in terms of gene sets: methodological issues. Bioinformatics, 23, 980-7.

Barry et al. (2005) Significance Analysis of Function and Expression. Bioinformatics, 21:1943-9.

Subramanian et al. (2005) Gene Set Enrichment Analysis: a knowledge-based approach for interpreting genome-wide expression profiles. Proc Natl Acad Sci USA, 102:15545-50.

Dinu et al. (2007) Improving gene set analysis of microarray data by SAM-GS. BMC Bioinformatics, 8:242

See Also

Input: read.eset, probe.2.gene.eset get.kegg.genesets to retrieve gene sets from KEGG.

Output: gs.ranking to retrieve the ranked list of gene sets. ea.browse for exploration of resulting gene sets.

Other: nbea to perform network-based enrichment analysis. comb.ea.results to combine results from different methods.

Examples

Run this code
    # currently supported methods
    sbea.methods()

    # (1) expression data: 
    # simulated expression values of 100 genes
    # in two sample groups of 6 samples each
    eset <- make.example.data(what="eset")
    eset <- de.ana(eset)

    # (2) gene sets:
    # draw 10 gene sets with 15-25 genes
    gs <- make.example.data(what="gs", gnames=featureNames(eset))

    # (3) make 2 artificially enriched sets:
    sig.genes <- featureNames(eset)[fData(eset)$ADJ.PVAL < 0.1]
    gs[[1]] <- sample(sig.genes, length(gs[[1]])) 
    gs[[2]] <- sample(sig.genes, length(gs[[2]]))   

    # (4) performing the enrichment analysis
    ea.res <- sbea(method="ora", eset=eset, gs=gs, perm=0)

    # (5) result visualization and exploration
    gs.ranking(ea.res)

    # using your own tailored function as enrichment method
    dummy.sbea <- function(eset, gs, alpha, perm)
    {
        sig.ps <- sample(seq(0, 0.05, length=1000), 5)
        nsig.ps <- sample(seq(0.1, 1, length=1000), length(gs)-5)
        ps <- sample(c(sig.ps, nsig.ps), length(gs))
        names(ps) <- names(gs)
        return(ps)
    }

    ea.res2 <- sbea(method=dummy.sbea, eset=eset, gs=gs)
    gs.ranking(ea.res2) 

Run the code above in your browser using DataLab