knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
# Track time spent on making the vignette. start_time <- Sys.time() # Bib setup. library(RefManageR) # Write bibliography information bib <- c( decoupleR = citation("decoupleR")[1], AUCell = citation("AUCell")[1], fgsea = citation("fgsea")[1], GSVA = citation("GSVA")[1], viper = citation("viper")[1] )
r Biocpkg("decoupleR")
is an R package distributed as part of the Bioconductor
project. To install the package, start R and enter:
install.packages("BiocManager") BiocManager::install("decoupleR")
Alternatively, you can instead install the latest development version from GitHub with:
BiocManager::install("saezlab/decoupleR")
r Biocpkg("decoupleR")
r Citep(bib[["decoupleR"]])
contains different
statistical methods to extract biological activities from omics data using prior
knowledge. Some of them are:
r Citep(bib[["AUCell"]])
r Citep(bib[["fgsea"]])
r Citep(bib[["GSVA"]])
r Citep(bib[["viper"]])
In this vignette we showcase how to use it with some toy data.
r Biocpkg("decoupleR")
can be imported as:
library(decoupleR) # Extra libraries library(dplyr) library(pheatmap)
r Biocpkg("decoupleR")
needs a matrix (mat
) of any molecular readouts (gene
expression, logFC, p-values, etc.) and a network
that relates target
features (genes, proteins, etc.) to "source" biological entities (pathways,
transcription factors, molecular processes, etc.). Some methods also require
the mode of regulation (MoR) for each interaction, defined as negative or
positive weights.
To get an example data-set, run:
data <- decoupleR::get_toy_data() mat <- data$mat head(mat,5)[,1:5] network <- data$network network
This example consists of two small populations of samples (S, cols) with different gene expression patterns (G, rows):
# Color scale colors <- rev(RColorBrewer::brewer.pal(n = 11, name = "RdBu")) colors.use <- grDevices::colorRampPalette(colors = colors)(100) # Heatmap pheatmap::pheatmap(mat = mat, color = colors.use, border_color = "white", cluster_rows = FALSE, cluster_cols = FALSE, cellwidth = 15, cellheight = 15, treeheight_row = 0, treeheight_col = 0)
Here we can see that some genes seem to be more expressed in one group of samples than in the other and vice-versa. Ideally, we would like to capture these differences in gene programs into interpretable biological entities. In this example we will do it by summarizing gene expression into transcription factor activities.
The toy data also contains a simple net consisting of 3 transcription factors (Ts) with specific regulation to target genes (either positive or negative). This network can be visualized like a graph. Green edges are positive regulation (activation), red edges are negative regulation (inactivation):
According to this network, the first population of samples should show high activity for T1 and T3, while the second one only for T2.
r Biocpkg("decoupleR")
contains several methods. To check how many are
available, run:
decoupleR::show_methods()
Each method models biological activities in a different manner, sometimes
returning more than one estimate or providing significance of the estimation.
To know what each method returns, please check their documentation like this
?run_mlm
.
To have a unified framework, methods have these shared arguments:
mat
: input matrix of molecular readouts.network
: input prior knowledge information relating molecular features to
biological entities..source
,.target
and .mor
: column names where to extract the information
from network
. .source
refers to the biological entities..target
refers to the molecular features..mor
refers to the "strength" of the interaction (if available, else 1s
will be used). Only available for methods that can model interaction weights. minsize
: Minimum of target features per biological entity (5 by default).
If less, sources are removed. This filtering prevents obtaining noisy activities
from biological entities with very few matching target features in matrix
. For
this example data-set we will have to keep it to 0 though. As an example, let’s first run the Gene Set Enrichment Analysis method (gsea
),
one of the most well-known statistics:
res_gsea <- decoupleR::run_fgsea(mat = mat, network = network, .source = 'source', .target = 'target', nproc = 1, minsize = 0) res_gsea
Methods return a result data-frame containing:
statistic
: name of the statistic. Depending on the method, there can be more than one per method.source
: name of the biological entity.condition
: sample name.score
: inferred biological activity.p_value
: if available, significance of the inferred activity.In the case of gsea
, it returns a simple estimate of activities (fgsea
),
a normalized estimate (norm_fgsea
) and p-values after doing permutations.
Other methods can return different things, for example Univariate Linear Model
(ulm
):
res_ulm <- decoupleR::run_ulm(mat = mat, network = network, .source = 'source', .target = 'target', .mor = 'mor', minsize = 0) res_ulm
In this case, ulm
returns just an estimate (ulm
) and its associated p-values.
Each method can return different statistics, we recommend to check their
documentation to know more about them.
Let us plot the obtained results, first for gsea
:
# Transform to matrix mat_gsea <- res_gsea %>% dplyr::filter(statistic == 'fgsea') %>% decoupleR::pivot_wider_profile(id_cols = source, names_from = condition, values_from = score) %>% as.matrix() # Color scale colors <- rev(RColorBrewer::brewer.pal(n = 11, name = "RdBu")) colors.use <- grDevices::colorRampPalette(colors = colors)(100) # Heatmap pheatmap::pheatmap(mat = mat_gsea, color = colors.use, border_color = "white", cluster_rows = FALSE, cluster_cols = FALSE, cellwidth = 20, cellheight = 20, treeheight_row = 0, treeheight_col = 0)
We can observe that for transcription factors T1 and T2, the obtained activities
correctly distinguish the two sample populations. T3, on the other hand, should
be down for the second population of samples since it is a repressor.
This mislabeling of activities happens because gsea
cannot model weights when
inferring biological activities.
When weights are available in the prior knowledge, we definitely recommend using
any of the methods that take them into account to get better estimates,
one example is ulm
:
# Transform to matrix mat_ulm <- res_ulm %>% dplyr::filter(statistic=='ulm') %>% decoupleR::pivot_wider_profile(id_cols = source, names_from = condition, values_from = score) %>% as.matrix() # Color scale colors <- rev(RColorBrewer::brewer.pal(n = 11, name = "RdBu")) colors.use <- grDevices::colorRampPalette(colors = colors)(100) # Heatmap pheatmap::pheatmap(mat = mat_ulm, color = colors.use, border_color = "white", cluster_rows = FALSE, cluster_cols = FALSE, cellwidth = 20, cellheight = 20, treeheight_row = 0, treeheight_col = 0)
Since ulm
models weights when estimating biological activities, it correctly
assigns T3 as inactive in the second population of samples.
r Biocpkg("decoupleR")
also allows to run multiple methods at the same time.
Moreover, it computes a consensus score based on the obtained activities across
methods, called consensus
.
By default, deocuple
runs only the top performer methods in our benchmark (mlm
,
ulm
and wsum
), and estimates a consensus score across them. Specific
arguments to specific methods can be passed using the variable args
. For more
information check ?decouple
.
res_decouple <- decoupleR::decouple(mat, network, .source ='source', .target ='target', minsize = 0) res_decouple
Let us see the result for the consensus score in the previous decouple
run:
# Transform to matrix mat_consensus <- res_decouple %>% dplyr::filter(statistic == 'consensus') %>% decoupleR::pivot_wider_profile(id_cols = source, names_from = condition, values_from = score) %>% as.matrix() # Color scale colors <- rev(RColorBrewer::brewer.pal(n = 11, name = "RdBu")) colors.use <- grDevices::colorRampPalette(colors = colors)(100) # Heatmap pheatmap::pheatmap(mat = mat_consensus, color = colors.use, border_color = "white", cluster_rows = FALSE, cluster_cols = FALSE, cellwidth = 20, cellheight = 20, treeheight_row = 0, treeheight_col = 0)
We can observe that the consensus score correctly predicts that T1 and T3 should be active in the first population of samples while T2 in the second one.
options(width = 120) sessioninfo::session_info()
## Print bibliography PrintBibliography(bib, .opts = list(hyperlink = "to.doc", style = "html"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.