library(tidyverse)
#> ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
#> ✔ dplyr 1.1.4 ✔ readr 2.1.5
#> ✔ forcats 1.0.0 ✔ stringr 1.5.1
#> ✔ ggplot2 3.4.4 ✔ tibble 3.2.1
#> ✔ lubridate 1.9.3 ✔ tidyr 1.3.1
#> ✔ purrr 1.0.2
#> ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
#> ✖ dplyr::filter() masks stats::filter()
#> ✖ dplyr::lag() masks stats::lag()
#> ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(drugfindR)
drugfindR
provides end-users a convenient method for accessing the Library of Integrated Network-Based Cellular Signatures (LINCS). The LINCS project aims to create a network-based understanding of biology by systematically cataloging changes in cellular processes, namely gene expression, that occur when cells are exposed to a variety of perturbing agents. iLINCS is an integrated web-based platform designed for the analysis of omics data and signatures of cellular perturbagens. While the iLINCS analysis workflows integrate vast omics data resources and a range of analytic and visual tools into a comprehensive platform, drugfindR
is advantageous in that it is scriptable and usable from within R without relying on the iLINCS web platform. drugfindR
also possesses the capability of running all input signatures simultaneously, which makes investigating a particular gene or drug extremely efficient. From the output data generated by drugfindR
, end-users may understand how the overexpression or knockdown of a specific gene affects the expression of genes within the same cellular system, identify downstream molecular consequences of gene perturbation within a system, and investigate candidate drugs that may be repurposed for other physiological reasons.
drugfindR
can be installed from GitHub using the devtools
package:
drugfindR
has multiple features that make interfacing with the iLINCS database and analyzing LINCS data simple and efficient. However, the package is expliclty designed for two primary use cases:
This pacakge provides two different ways to achieve these use cases. First, there is a set of five functions that can be deployed in a pipeline for the results. Then, there are two functions investiage_target()
and investigate_signature()
that perform the entire pipeline in one function call with sensible defaults.
The five pipeline functions are:
get_signature()
: This function takes a LINCS ID and returns the corresponding signature.prepare_signature()
: This function takes a transcriptomic signature and prepares it for analysis by drugfindR
.filter_signature()
: This function takes a signature and filters it to given thresholds.get_concordants()
: This function takes a signature and returns the concordant signatures from the iLINCS database.consensus_concordants()
: This function takes a list of concordant signatures and returns a list of consensus signature.For this case, we will use one of the signatures that was used in the paper “Identification of candidate repurposable drugs to combat COVID‑19 using a signature‑based approach” by O’Donovan, Imami, et al.
In that paper the authors used the available gene expression data from cells infected with SARS-CoV-2 to identify potential drugs that could be repurposed to treat COVID-19. We will use one of the signatures that they have provided in their paper to showcase how drugfindR
can be used to identify candidate drugs from an input signature. We will use the dCovid_diffexp.tsv
signature from the paper.
This signature is available from Zenodo here. Our first step is to download the signature so we can work with it. The read_tsv()
function from the readr
package can be used to read the signature into R from a remote URL.
# Load the signature from the paper
diffexp <- read_tsv("https://zenodo.org/records/10265182/files/dCovid_diffexp.tsv")
#> Rows: 17117 Columns: 6
#> ── Column specification ────────────────────────────────────────────────────────
#> Delimiter: "\t"
#> chr (1): hgnc_symbol
#> dbl (5): logFC, logCPM, F, PValue, FDR
#>
#> ℹ Use `spec()` to retrieve the full column specification for this data.
#> ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
# Take a look at the signature
head(diffexp) |>
knitr::kable()
hgnc_symbol | logFC | logCPM | F | PValue | FDR |
---|---|---|---|---|---|
CCL4L2 | -3.976903 | 1.0949627 | 98.29896 | 1.80e-06 | 0.0302603 |
IL5RA | -4.830082 | 1.8521222 | 68.92091 | 8.70e-06 | 0.0590672 |
FN1 | 4.942690 | 7.0400984 | 64.35295 | 1.17e-05 | 0.0590672 |
GSTM1 | -8.211472 | 0.9150787 | 60.57038 | 1.53e-05 | 0.0590672 |
CD180 | 2.153878 | 4.0398191 | 56.77155 | 2.02e-05 | 0.0590672 |
FAM20C | 3.112871 | 2.7881368 | 53.79673 | 2.55e-05 | 0.0590672 |
We can see that the signature has ncol(diffexp)
columns and nrow(diffexp)
rows. The names of the columns are typical of what you would get from edgeR or DESeq2.
The next step is to prepare the signature for analysis by drugfindR
. This step is necessary because the signature can be in many different formats, with different names for columns. iLICNS needs columns to be in a specific order and with specific names. The prepare_signature()
function takes care of this for us.
prepare_signature()
takes three optional arguments:
gene_column
: The name of the column in the input that contains the gene names. The default is "Symbol"
.logfc_column
: The name of the column in the input that contains the log fold change values. The default is "logFC"
.pval_column
: The name of the column in the input that contains the p-values. The default is "PValue"
.# Prepare the signature for analysis
# The only thing that is different from the defaults is the gene_column
# However, we will specify all three arguments for clarity
signature <- prepare_signature(diffexp, gene_column = "hgnc_symbol", logfc_column = "logFC", pval_column = "PValue")
# Take a look at the signature
head(signature) |>
knitr::kable()
signatureID | ID_geneid | Name_GeneSymbol | Value_LogDiffExp | Significance_pvalue | |
---|---|---|---|---|---|
1 | InputSig | 6714 | SRC | 0.8852964 | 0.2788790 |
7 | InputSig | 23039 | XPO7 | 0.8251441 | 0.0216479 |
10 | InputSig | 5300 | PIN1 | -0.4703492 | 0.2962363 |
13 | InputSig | 51335 | NGRN | -0.1650277 | 0.6428223 |
15 | InputSig | 1465 | CSRP1 | 0.4336660 | 0.1932939 |
23 | InputSig | 23149 | FCHO1 | -0.4870652 | 0.0887758 |
We can see that the signature has been reordered and renamed. The first column is now names(signature)[1]
, the second column is now names(signature)[2]
, and the third column is now names(signature)[3]
, which is what iLINCS expects.
Now that we have the signature in the correct format and filtered to the L1000 genes, we can filter it to the thresholds that we want. This filter step is necessary because we would like to use the genes that have a high enough change for it to matter.
The filter_signature()
function can filter based on logFC values in two ways:
The filter_signature()
function takes three arguments:
signature
: The signature to filter.direction
: This argument specifies whether to filter for upregulated genes, downregulated genes, or both. The default is "any"
.threshold
or prop
: The threshold argument is used to specify an absolute threshold (or a pair of absolute thresholds) for the logFC values. The prop argument is used to specify a percentile threshold (or a pair of percentile thresholds) for the logFC values. They can not be specified together.# Filter the signature to only include genes that are upregulated by at least 1.5 logFC
filtered_signature_up <- filter_signature(signature, direction = "up", threshold = 1.5)
filtered_signature_up |>
head() |>
knitr::kable()
signatureID | ID_geneid | Name_GeneSymbol | Value_LogDiffExp | Significance_pvalue |
---|---|---|---|---|
InputSig | 4860 | PNP | 1.709692 | 0.0024364 |
InputSig | 7077 | TIMP2 | 1.795990 | 0.0124167 |
InputSig | 890 | CCNA2 | 1.750080 | 0.0163805 |
InputSig | 991 | CDC20 | 3.399809 | 0.0003236 |
InputSig | 9093 | DNAJA3 | 2.340929 | 0.0199756 |
InputSig | 1509 | CTSD | 1.547209 | 0.0019360 |
# Filter the signature to only include genes that are downregulated by at least 1.5 logFC
filtered_signature_dn <- filter_signature(signature, direction = "down", threshold = 1.5)
filtered_signature_dn |>
head() |>
knitr::kable()
signatureID | ID_geneid | Name_GeneSymbol | Value_LogDiffExp | Significance_pvalue |
---|---|---|---|---|
InputSig | 2810 | SFN | -2.056475 | 0.0151082 |
InputSig | 3815 | KIT | -1.635917 | 0.0225406 |
InputSig | 2625 | GATA3 | -2.310024 | 0.0018368 |
InputSig | 10123 | ARL4C | -1.638483 | 0.0005734 |
InputSig | 2624 | GATA2 | -2.728454 | 0.0110850 |
InputSig | 2946 | GSTM2 | -1.666703 | 0.0055149 |
Now that we have the filtered signatures for both upregulated and downregulated genes, we can get the concordant signatures from the iLINCS database. The get_concordants()
function takes a signature and returns the concordant signatures from the iLINCS database. It also requires specification of the database to target for the concordant signatures.
The get_concordants()
function takes the following arguments:
signature
: The signature to get concordant signatures for.ilincs_library
: The iLINCS library to target for concordant signatures. This can be one of c(“OE”, “KD”, “CP”), standing for overexpression, knockdown, and chemical perturbagens, respectively.direction
: This argument specifies whether the input signature is upregulated or downregulated. This is useful to annotate the output. This is NULL
by default.# Get the concordant signatures for the upregulated signature
up_concordants <- get_concordants(filtered_signature_up, ilincs_library = "CP", sig_direction = "up")
up_concordants |>
head() |>
knitr::kable()
signatureid | compound | concentration | time | cellline | similarity | pValue | sig_direction |
---|---|---|---|---|---|---|---|
LINCSCP_99767 | Mitoxantrone | 0.04uM | 24h | HCC515 | 0.6259367 | 0e+00 | up |
LINCSCP_207881 | Navitoclax | 10uM | 6h | H1299 | 0.6121090 | 0e+00 | up |
LINCSCP_207785 | Myriocin | 10uM | 6h | H1299 | 0.5997347 | 0e+00 | up |
LINCSCP_285868 | CHEMBL259628 | 10uM | 6h | SKM1 | 0.5835506 | 1e-07 | up |
LINCSCP_163143 | Crizotinib | 0.12uM | 3h | SKBR3 | 0.5759650 | 1e-07 | up |
LINCSCP_64976 | PP-242 | 0.5uM | 24h | VCAP | -0.5674210 | 2e-07 | up |
# Get the concordant signatures for the downregulated signature
dn_concordants <- get_concordants(filtered_signature_dn, ilincs_library = "CP", sig_direction = "down")
dn_concordants |>
head() |>
knitr::kable()
signatureid | compound | concentration | time | cellline | similarity | pValue | sig_direction |
---|---|---|---|---|---|---|---|
LINCSCP_260147 | PD-98059 | 10uM | 6h | NEU | 0.9276283 | 6.00e-07 | down |
LINCSCP_149954 | 848193-68-0 | 0.12uM | 24h | NPC.TAK | -0.9235333 | 9.00e-07 | down |
LINCSCP_40982 | Devazepide | 10uM | 24h | NEU | 0.9133641 | 2.00e-06 | down |
LINCSCP_292245 | MLS003568137 | 10uM | 24h | VCAP | -0.8890042 | 9.30e-06 | down |
LINCSCP_150380 | VX-745 | 0.04uM | 24h | NPC.TAK | 0.8854791 | 1.13e-05 | down |
LINCSCP_150801 | Mitoxantrone | 1.11uM | 24h | PC3 | 0.8736419 | 2.09e-05 | down |
Now that we have the concordant signatures for both the upregulated and downregulated signatures, we can get the list of consensus concordant signatures. The consensus_concordants()
function takes a list of concordant signatures and returns a list of consensus signatures. This function also takes a number of optional arguments that can be used to control the consensus list generation.
By default the consensus list performs the following steps:
Additionally we can filter by the cell line to only include the cell lines of interest.
The consensus_concordants()
function takes the following arguments:
...
: One or Two (see paired) Data Frames with the concordantspaired
: A logical value indicating whether the input is a single data frame with paired signatures or two data frames with unpaired signatures. The default is FALSE
.cell_lines
: A character vector of cell lines to filter the consensus list to. The default is NULL
, which means no filtering.cutoff
: The absolute cutoff value of similarity to use when filtering the consensus list. The default is 0.321
.# Get the consensus concordant signatures for the upregulated signature
consensus <- consensus_concordants(up_concordants, dn_concordants, paired = TRUE, cutoff = 0.2)
consensus |>
head() |>
knitr::kable()
TargetSignature | Target | TargetCellLine | TargetTime | TargetConcentration | Similarity | sig_direction |
---|---|---|---|---|---|---|
LINCSCP_260147 | PD-98059 | NEU | 6h | 10uM | 0.9276283 | down |
LINCSCP_149954 | 848193-68-0 | NPC.TAK | 24h | 0.12uM | -0.9235333 | down |
LINCSCP_40982 | Devazepide | NEU | 24h | 10uM | 0.9133641 | down |
LINCSCP_292245 | MLS003568137 | VCAP | 24h | 10uM | -0.8890042 | down |
LINCSCP_150380 | VX-745 | NPC.TAK | 24h | 0.04uM | 0.8854791 | down |
LINCSCP_150801 | Mitoxantrone | PC3 | 24h | 1.11uM | 0.8736419 | down |
The above method breaks down the entire method into five steps. However, drugfindR
also provides two functions that perform the entire pipeline in one function call with sensible defaults. These functions are investigate_target()
and investigate_signature()
.
For this use case, investigate_signature()
is the function that we want to use. It takes the following required arguments:
expr
: The signature to investigate.output_lib
: The iLINCS library to target for concordant signatures. This can be one of c(“OE”, “KD”, “CP”), standing for overexpression, knockdown, and chemical perturbagens, respectively.filter_threshold
: The absolute threshold (or a pair of absolute thresholds) for the logFC values. Any genes that do not meet the threshold will be removed from the signature.filter_prop
: The percentile threshold (or a pair of percentile thresholds) for the logFC values. Any genes that do not meet the threshold will be removed from the signature.Other arguments that have sensible defaults are:
similarity_threshold
: The absolute cutoff value of similarity to use when filtering the consensus list. The default is 0.2
.paired
: A logical value indicating whether the to split the input dataframe in up and downregulated signatures. The default is TRUE
.output_cell_lines
: A character vector of cell lines to filter the consensus list to. The default is NULL
, which means no filtering.gene_column
: The name of the column in the input that contains the gene names. The default is "Symbol"
.logfc_column
: The name of the column in the input that contains the log fold change values. The default is "logFC"
.pval_column
: The name of the column in the input that contains the p-values. The default is "PValue"
.source_name
: The name of the source of the signature. The default is "Input"
.source_cell_line
: The cell line of the source of the signature. The default is "NA"
.source_time
: The time of the source of the signature. The default is "NA"
.source_concentration
: The concentration of the source of the signature. The default is "NA"
.investigated <- investigate_signature(diffexp,
output_lib = "CP", filter_threshold = 1.5,
gene_column = "hgnc_symbol", logfc_column = "logFC", pval_column = "PValue"
)
investigated |>
head() |>
knitr::kable()
Source | Target | Similarity | SourceSignature | SourceCellLine | InputSignatureDirection | SourceTime | TargetSignature | TargetCellLine | TargetConcentration | TargetTime |
---|---|---|---|---|---|---|---|---|---|---|
Input | PD-98059 | 0.9276283 | InputSig | NA | Down | NA | LINCSCP_260147 | NEU | 10uM | 6h |
Input | 848193-68-0 | -0.9235333 | InputSig | NA | Down | NA | LINCSCP_149954 | NPC.TAK | 0.12uM | 24h |
Input | Devazepide | 0.9133641 | InputSig | NA | Down | NA | LINCSCP_40982 | NEU | 10uM | 24h |
Input | MLS003568137 | -0.8890042 | InputSig | NA | Down | NA | LINCSCP_292245 | VCAP | 10uM | 24h |
Input | VX-745 | 0.8854791 | InputSig | NA | Down | NA | LINCSCP_150380 | NPC.TAK | 0.04uM | 24h |
Input | Mitoxantrone | 0.8736419 | InputSig | NA | Down | NA | LINCSCP_150801 | PC3 | 1.11uM | 24h |
devtools::session_info()
#> ─ Session info ───────────────────────────────────────────────────────────────
#> setting value
#> version R Under development (unstable) (2024-01-16 r85808)
#> os Ubuntu 22.04.3 LTS
#> system x86_64, linux-gnu
#> ui X11
#> language (EN)
#> collate C
#> ctype en_US.UTF-8
#> tz America/New_York
#> date 2024-02-09
#> pandoc 2.7.3 @ /usr/bin/ (via rmarkdown)
#>
#> ─ Packages ───────────────────────────────────────────────────────────────────
#> package * version date (UTC) lib source
#> archive 1.1.7 2023-12-11 [3] CRAN (R 4.4.0)
#> bit 4.0.5 2022-11-15 [3] CRAN (R 4.4.0)
#> bit64 4.0.5 2020-08-30 [3] CRAN (R 4.4.0)
#> bslib 0.6.1 2023-11-28 [3] CRAN (R 4.4.0)
#> cachem 1.0.8 2023-05-01 [3] CRAN (R 4.4.0)
#> cli 3.6.2 2023-12-11 [3] CRAN (R 4.4.0)
#> colorspace 2.1-0 2023-01-23 [3] CRAN (R 4.4.0)
#> crayon 1.5.2 2022-09-29 [3] CRAN (R 4.4.0)
#> curl 5.2.0 2023-12-08 [3] CRAN (R 4.4.0)
#> devtools 2.4.5 2022-10-11 [3] CRAN (R 4.4.0)
#> digest 0.6.34 2024-01-11 [3] CRAN (R 4.4.0)
#> dplyr * 1.1.4 2023-11-17 [3] CRAN (R 4.4.0)
#> drugfindR * 0.99.581 2024-02-09 [1] Bioconductor
#> ellipsis 0.3.2 2021-04-29 [3] CRAN (R 4.4.0)
#> evaluate 0.23 2023-11-01 [3] CRAN (R 4.4.0)
#> fansi 1.0.6 2023-12-08 [3] CRAN (R 4.4.0)
#> fastmap 1.1.1 2023-02-24 [3] CRAN (R 4.4.0)
#> forcats * 1.0.0 2023-01-29 [3] CRAN (R 4.4.0)
#> fs 1.6.3 2023-07-20 [3] CRAN (R 4.4.0)
#> generics 0.1.3 2022-07-05 [3] CRAN (R 4.4.0)
#> ggplot2 * 3.4.4 2023-10-12 [3] CRAN (R 4.4.0)
#> glue 1.7.0 2024-01-09 [3] CRAN (R 4.4.0)
#> gtable 0.3.4 2023-08-21 [3] CRAN (R 4.4.0)
#> hms 1.1.3 2023-03-21 [3] CRAN (R 4.4.0)
#> htmltools 0.5.7 2023-11-03 [3] CRAN (R 4.4.0)
#> htmlwidgets 1.6.4 2023-12-06 [3] CRAN (R 4.4.0)
#> httpuv 1.6.14 2024-01-26 [3] CRAN (R 4.4.0)
#> httr 1.4.7 2023-08-15 [3] CRAN (R 4.4.0)
#> jquerylib 0.1.4 2021-04-26 [3] CRAN (R 4.4.0)
#> jsonlite 1.8.8 2023-12-04 [3] CRAN (R 4.4.0)
#> knitr 1.45 2023-10-30 [3] CRAN (R 4.4.0)
#> later 1.3.2 2023-12-06 [3] CRAN (R 4.4.0)
#> lifecycle 1.0.4 2023-11-07 [3] CRAN (R 4.4.0)
#> lubridate * 1.9.3 2023-09-27 [3] CRAN (R 4.4.0)
#> magrittr 2.0.3 2022-03-30 [3] CRAN (R 4.4.0)
#> memoise 2.0.1 2021-11-26 [3] CRAN (R 4.4.0)
#> mime 0.12 2021-09-28 [3] CRAN (R 4.4.0)
#> miniUI 0.1.1.1 2018-05-18 [3] CRAN (R 4.4.0)
#> munsell 0.5.0 2018-06-12 [3] CRAN (R 4.4.0)
#> pillar 1.9.0 2023-03-22 [3] CRAN (R 4.4.0)
#> pkgbuild 1.4.3 2023-12-10 [3] CRAN (R 4.4.0)
#> pkgconfig 2.0.3 2019-09-22 [3] CRAN (R 4.4.0)
#> pkgload 1.3.4 2024-01-16 [3] CRAN (R 4.4.0)
#> profvis 0.3.8 2023-05-02 [3] CRAN (R 4.4.0)
#> promises 1.2.1 2023-08-10 [3] CRAN (R 4.4.0)
#> purrr * 1.0.2 2023-08-10 [3] CRAN (R 4.4.0)
#> R6 2.5.1 2021-08-19 [3] CRAN (R 4.4.0)
#> Rcpp 1.0.12 2024-01-09 [3] CRAN (R 4.4.0)
#> readr * 2.1.5 2024-01-10 [3] CRAN (R 4.4.0)
#> remotes 2.4.2.1 2023-07-18 [3] CRAN (R 4.4.0)
#> rlang 1.1.3 2024-01-10 [3] CRAN (R 4.4.0)
#> rmarkdown 2.25 2023-09-18 [3] CRAN (R 4.4.0)
#> sass 0.4.8 2023-12-06 [3] CRAN (R 4.4.0)
#> scales 1.3.0 2023-11-28 [3] CRAN (R 4.4.0)
#> sessioninfo 1.2.2 2021-12-06 [3] CRAN (R 4.4.0)
#> shiny 1.8.0 2023-11-17 [3] CRAN (R 4.4.0)
#> stringi 1.8.3 2023-12-11 [3] CRAN (R 4.4.0)
#> stringr * 1.5.1 2023-11-14 [3] CRAN (R 4.4.0)
#> tibble * 3.2.1 2023-03-20 [3] CRAN (R 4.4.0)
#> tidyr * 1.3.1 2024-01-24 [3] CRAN (R 4.4.0)
#> tidyselect 1.2.0 2022-10-10 [3] CRAN (R 4.4.0)
#> tidyverse * 2.0.0 2023-02-22 [3] CRAN (R 4.4.0)
#> timechange 0.3.0 2024-01-18 [3] CRAN (R 4.4.0)
#> tzdb 0.4.0 2023-05-12 [3] CRAN (R 4.4.0)
#> urlchecker 1.0.1 2021-11-30 [3] CRAN (R 4.4.0)
#> usethis 2.2.2 2023-07-06 [3] CRAN (R 4.4.0)
#> utf8 1.2.4 2023-10-22 [3] CRAN (R 4.4.0)
#> vctrs 0.6.5 2023-12-01 [3] CRAN (R 4.4.0)
#> vroom 1.6.5 2023-12-05 [3] CRAN (R 4.4.0)
#> withr 3.0.0 2024-01-16 [3] CRAN (R 4.4.0)
#> xfun 0.42 2024-02-08 [3] CRAN (R 4.4.0)
#> xtable 1.8-4 2019-04-21 [3] CRAN (R 4.4.0)
#> yaml 2.3.8 2023-12-11 [2] CRAN (R 4.4.0)
#>
#> [1] /tmp/Rtmpa68VCF/Rinst24073f7657c4d9
#> [2] /home/pkgbuild/packagebuilder/workers/jobs/3151/R-libs
#> [3] /home/biocbuild/bbs-3.19-bioc/R/site-library
#> [4] /home/biocbuild/bbs-3.19-bioc/R/library
#>
#> ──────────────────────────────────────────────────────────────────────────────