decoupleR 2.10.0
Bulk RNA-seq yield many molecular readouts that are hard to interpret by themselves. One way of summarizing this information is by inferring transcription factor (TF) activities from prior knowledge.
In this notebook we showcase how to use decoupleR
for transcription factor activity
inference with a bulk RNA-seq data-set where the transcription factor FOXA2 was
knocked out in pancreatic cancer cell lines.
The data consists of 3 Wild Type (WT) samples and 3 Knock Outs (KO). They are freely available in GEO.
First, we need to load the relevant packages:
## We load the required packages
library(decoupleR)
library(dplyr)
library(tibble)
library(tidyr)
library(ggplot2)
library(pheatmap)
library(ggrepel)
Here we used an already processed bulk RNA-seq data-set. We provide the
normalized log-transformed counts, the experimental design meta-data and the
Differential Expressed Genes (DEGs) obtained using limma
.
For this example we use limma
but we could have used DeSeq2
, edgeR
or any
other statistical framework. decoupleR requires a gene level statistic to
perform enrichment analysis but it is agnostic of how it was generated. However,
we do recommend to use statistics that include the direction of change and its
significance, for example the t-value obtained for limma
(t
) or DeSeq2
(stat
).
edgeR does not return such statistic but we can create our own by weighting the
obtained logFC by pvalue with this formula: -log10(pvalue) * logFC
.
We can open the data like this:
inputs_dir <- system.file("extdata", package = "decoupleR")
data <- readRDS(file.path(inputs_dir, "bk_data.rds"))
From data
we can extract the mentioned information. Here we see the normalized
log-transformed counts:
# Remove NAs and set row names
counts <- data$counts %>%
dplyr::mutate_if(~ any(is.na(.x)), ~ if_else(is.na(.x),0,.x)) %>%
column_to_rownames(var = "gene") %>%
as.matrix()
head(counts)
#> PANC1.WT.Rep1 PANC1.WT.Rep2 PANC1.WT.Rep3 PANC1.FOXA2KO.Rep1 PANC1.FOXA2KO.Rep2 PANC1.FOXA2KO.Rep3
#> NOC2L 10.052588 11.949123 12.057774 12.312291 12.139918 11.494205
#> PLEKHN1 7.535115 8.125993 8.714880 8.048196 8.290154 8.621239
#> PERM1 6.281242 6.424582 6.589668 6.293285 6.486136 6.775344
#> ISG15 10.938252 11.469081 11.425415 11.549986 11.371464 11.178157
#> AGRN 6.956335 7.196108 7.522550 7.061549 7.485534 7.071555
#> C1orf159 9.546224 9.788721 9.794589 9.850830 9.988069 9.965357
The design meta-data:
design <- data$design
design
#> # A tibble: 6 × 2
#> sample condition
#> <chr> <chr>
#> 1 PANC1.WT.Rep1 PANC1.WT
#> 2 PANC1.WT.Rep2 PANC1.WT
#> 3 PANC1.WT.Rep3 PANC1.WT
#> 4 PANC1.FOXA2KO.Rep1 PANC1.FOXA2KO
#> 5 PANC1.FOXA2KO.Rep2 PANC1.FOXA2KO
#> 6 PANC1.FOXA2KO.Rep3 PANC1.FOXA2KO
And the results of limma
, of which we are interested in extracting the
obtained t-value and p-value from the contrast:
# Extract t-values per gene
deg <- data$limma_ttop %>%
select(ID, logFC, t, P.Value) %>%
filter(!is.na(t)) %>%
column_to_rownames(var = "ID") %>%
as.matrix()
head(deg)
#> logFC t P.Value
#> RHBDL2 -1.823940 -12.810588 3.030276e-06
#> PLEKHH2 -1.568830 -10.794453 9.932046e-06
#> HEG1 -1.725806 -9.788112 1.939734e-05
#> CLU -1.786200 -9.761618 1.975813e-05
#> FHL1 2.087082 8.950191 3.552199e-05
#> RBP4 -1.728960 -8.529074 4.904579e-05
CollecTRI is a comprehensive resource containing a curated collection of TFs and their transcriptional targets compiled from 12 different resources. This collection provides an increased coverage of transcription factors and a superior performance in identifying perturbed TFs compared to our previous DoRothEA network and other literature based GRNs. Similar to DoRothEA, interactions are weighted by their mode of regulation (activation or inhibition).
For this example we will use the human version (mouse and rat are also
available). We can use decoupleR
to retrieve it from OmniPath
. The argument
split_complexes
keeps complexes or splits them into subunits, by default we
recommend to keep complexes together.
net <- get_collectri(organism='human', split_complexes=FALSE)
net
#> # A tibble: 43,178 × 3
#> source target mor
#> <chr> <chr> <dbl>
#> 1 MYC TERT 1
#> 2 SPI1 BGLAP 1
#> 3 SMAD3 JUN 1
#> 4 SMAD4 JUN 1
#> 5 STAT5A IL2 1
#> 6 STAT5B IL2 1
#> 7 RELA FAS 1
#> 8 WT1 NR0B1 1
#> 9 NR0B2 CASP1 1
#> 10 SP1 ALDOA 1
#> # ℹ 43,168 more rows
To infer TF enrichment scores we will run the Univariate Linear Model (ulm
) method. For each sample in our dataset (mat
) and each TF in our network (net
), it fits a linear model that predicts the observed gene expression
based solely on the TF’s TF-Gene interaction weights. Once fitted, the obtained t-value of the slope is the score. If it is positive, we interpret that the TF is active and if it is negative we interpret that it is inactive.