--- title: "Introduction" author: - name: Pau Badia-i-Mompel affiliation: - Heidelberg Universiy - name: Jesús Vélez-Santiago affiliation: - National Autonomous University of Mexico output: BiocStyle::html_document: self_contained: true toc: true toc_float: true toc_depth: 3 code_folding: show package: "`r pkg_ver('decoupleR')`" vignette: > %\VignetteIndexEntry{Introduction} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r chunk_setup, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ``` ```{r vignette_setup, echo=FALSE, message=FALSE, warning = FALSE} # 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] ) ``` # Installation `r Biocpkg("decoupleR")` is an R package distributed as part of the Bioconductor project. To install the package, start R and enter: ```{r bioconductor_install, eval=FALSE} install.packages("BiocManager") BiocManager::install("decoupleR") ``` Alternatively, you can instead install the latest development version from [GitHub](https://github.com/) with: ```{r github_install, eval=FALSE} BiocManager::install("saezlab/decoupleR") ``` # Usage `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: * AUCell: `r Citep(bib[["AUCell"]])` * Fast GSEA: `r Citep(bib[["fgsea"]])` * GSVA: `r Citep(bib[["GSVA"]])` * viper: `r Citep(bib[["viper"]])` In this vignette we showcase how to use it with some toy data. ## Libraries `r Biocpkg("decoupleR")` can be imported as: ```{r load_library, message=FALSE} library(decoupleR) # Extra libraries library(dplyr) library(pheatmap) ``` ## Input data `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: ```{r read_example_data} data <- 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): ```{r show_matrix, message=TRUE} pheatmap(mat, cluster_rows = F, cluster_cols = F) ``` 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. ## Methods `r Biocpkg("decoupleR")` contains several methods. To check how many are available, run: ```{r usage-show_methods, message=TRUE} 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. ## Running methods ### Individual methods As an example, let’s first run the Gene Set Enrichment Analysis method (`gsea`), one of the most well-known statistics: ```{r usage-fgsea, message=TRUE} res_gsea <- run_fgsea(mat, 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`): ```{r usage-ulm, message=TRUE} res_ulm <- run_ulm(mat, 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`: ```{r res_gsea, message=TRUE} # Transform to matrix mat_gsea <- res_gsea %>% filter(statistic=='fgsea') %>% pivot_wider_profile(id_cols = source, names_from = condition, values_from = score) %>% as.matrix() pheatmap(mat_gsea, cluster_rows = F, cluster_cols = F, cellwidth = 15, cellheight = 40) ``` 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`: ```{r res_ulm, message=TRUE} # Transform to matrix mat_ulm <- res_ulm %>% filter(statistic=='ulm') %>% pivot_wider_profile(id_cols = source, names_from = condition, values_from = score) %>% as.matrix() pheatmap(mat_ulm, cluster_rows = F, cluster_cols = F, cellwidth = 15, cellheight = 40) ``` Since `ulm` models weights when estimating biological activities, it correctly assigns T3 as inactive in the second population of samples. ### Multiple methods `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`. ```{r usage-decouple, message=TRUE} res_decouple <- 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: ```{r res_decouple, message=TRUE} # Transform to matrix mat_consensus <- res_decouple %>% filter(statistic=='consensus') %>% pivot_wider_profile(id_cols = source, names_from = condition, values_from = score) %>% as.matrix() pheatmap(mat_consensus, cluster_rows = F, cluster_cols = F, cellwidth = 15, cellheight = 40) ``` 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. # Session information ```{r session_info, echo=FALSE} options(width = 120) sessioninfo::session_info() ``` # Bibliography ```{r vignetteBiblio, results = "asis", echo = FALSE, warning = FALSE, message = FALSE} ## Print bibliography PrintBibliography(bib, .opts = list(hyperlink = "to.doc", style = "html")) ```