The gDRimport
package is a part of the gDR suite. It helps to prepare raw drug response data for downstream processing. It mainly contains helper functions for importing/loading/validating dose response data provided from different scanner sources. In collaboration with the BHKLab, gDRimport
also provides functions that can convert a PharmacoGx::PharamcoSet
object into a gDR object. With this functionality, users familiar with the gDR suite of packages and methods can utilize the publically available, curated datasets from the PharmacoGx database. The main step in this process is to extract the drug dose-response data from the PharmacoSets and transform them into a data.table
that can be used as input for the gDRcore::runDrugResponseProcessingPipeline
.
Whereas a user might already have a pharmacoset loaded in their R session, if they wish to obtain a different pharmacoset or use the same script in the future we provide a helper function to do so. It helps to have a user directory in which to store all pharmacosets, and by passing this directory into the function as a parameter, the function will also check to see if the PSet exists in the user-defined directory. This is to ensure that the PSet is not being re-downloaded if it already has.
PharamcoSets
hold data pertaining to the cell lines (@sample slot), drugs (@treatment slot), and dose response experiments (@treatmentResponse slot). The dose response data is stored in a treatmentResponseExperiment
object and the function gDRimport::convert_pset_to_df
extracts this information to build a data.table
that can be used as input to the gDR pipeline.
# Store treatment response data in df_
dt <- convert_pset_to_df(pharmacoset = pset)
str(dt)
#> Classes 'data.table' and 'data.frame': 34516 obs. of 7 variables:
#> $ Barcode : chr "PCM-0103090_1_130695_2018-08-28" "PCM-0103090_1_130695_2018-08-28" "PCM-0103090_1_130695_2018-08-28" "PCM-0103090_1_130695_2018-08-28" ...
#> $ ReadoutValue : num 75.7 63.1 75.9 87.2 78.8 ...
#> $ Concentration : num 0.0021 0.0052 0.01 0.0299 0.0798 ...
#> $ Clid : chr "130695" "130695" "130695" "130695" ...
#> $ DrugName : chr "Ivosidenib" "Ivosidenib" "Ivosidenib" "Ivosidenib" ...
#> $ Duration : num 48 48 48 48 48 48 48 48 48 48 ...
#> $ ReferenceDivisionTime: logi NA NA NA NA NA NA ...
#> - attr(*, ".internal.selfref")=<externalptr>
Most canonical PharmacoSets
have data pertaining to many cell lines and their response to many drugs (drug-combination data is available in some but its conversion to gDR is not currently supported). As such, in the interest of time and resources, it may be useful to subset the data before providing it as input for the gDR pipeline.
# example subset using only 1 cell line
subset_cl <- dt$Clid[1]
x <- dt[Clid == subset_cl]
x
#> Barcode ReadoutValue Concentration Clid
#> <char> <num> <num> <char>
#> 1: PCM-0103090_1_130695_2018-08-28 75.733 0.0021 130695
#> 2: PCM-0103090_1_130695_2018-08-28 63.094 0.0052 130695
#> 3: PCM-0103090_1_130695_2018-08-28 75.935 0.0100 130695
#> 4: PCM-0103090_1_130695_2018-08-28 87.159 0.0299 130695
#> 5: PCM-0103090_1_130695_2018-08-28 78.766 0.0798 130695
#> ---
#> 589: PCM-0064526_5_130695_2018-08-28 71.707 1.4960 130695
#> 590: PCM-0064526_5_130695_2018-08-28 60.488 3.9900 130695
#> 591: PCM-0064526_5_130695_2018-08-28 25.366 9.9750 130695
#> 592: PCM-0064526_5_130695_2018-08-28 5.976 24.9400 130695
#> 593: PCM-0064526_5_130695_2018-08-28 100.000 0.0000 130695
#> DrugName Duration ReferenceDivisionTime
#> <char> <num> <lgcl>
#> 1: Ivosidenib 48 NA
#> 2: Ivosidenib 48 NA
#> 3: Ivosidenib 48 NA
#> 4: Ivosidenib 48 NA
#> 5: Ivosidenib 48 NA
#> ---
#> 589: Azacitidine 48 NA
#> 590: Azacitidine 48 NA
#> 591: Azacitidine 48 NA
#> 592: Azacitidine 48 NA
#> 593: vehicle 48 NA
The subsetted data can now be used as input for the gDRcore::runDrugResponseProcessingPipeline()
. The output of this function is a MultiAssayExperiment
object which can be accessed with gDRutils::convert_se_assay_to_dt()
sessionInfo()
#> R version 4.4.1 (2024-06-14)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 24.04.1 LTS
#>
#> Matrix products: default
#> BLAS: /home/biocbuild/bbs-3.20-bioc/R/lib/libRblas.so
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.12.0
#>
#> locale:
#> [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
#> [3] LC_TIME=en_GB LC_COLLATE=C
#> [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
#> [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
#> [9] LC_ADDRESS=C LC_TELEPHONE=C
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
#>
#> time zone: America/New_York
#> tzcode source: system (glibc)
#>
#> attached base packages:
#> [1] stats4 stats graphics grDevices utils datasets methods
#> [8] base
#>
#> other attached packages:
#> [1] MultiAssayExperiment_1.32.0 gDRimport_1.4.0
#> [3] PharmacoGx_3.10.0 CoreGx_2.10.0
#> [5] SummarizedExperiment_1.36.0 Biobase_2.66.0
#> [7] GenomicRanges_1.58.0 GenomeInfoDb_1.42.0
#> [9] IRanges_2.40.0 S4Vectors_0.44.0
#> [11] MatrixGenerics_1.18.0 matrixStats_1.4.1
#> [13] BiocGenerics_0.52.0
#>
#> loaded via a namespace (and not attached):
#> [1] bitops_1.0-9 testthat_3.2.1.1 rlang_1.1.4
#> [4] magrittr_2.0.3 shinydashboard_0.7.2 compiler_4.4.1
#> [7] vctrs_0.6.5 reshape2_1.4.4 relations_0.6-13
#> [10] stringr_1.5.1 pkgconfig_2.0.3 crayon_1.5.3
#> [13] fastmap_1.2.0 backports_1.5.0 XVector_0.46.0
#> [16] caTools_1.18.3 utf8_1.2.4 promises_1.3.0
#> [19] rmarkdown_2.28 UCSC.utils_1.2.0 coop_0.6-3
#> [22] xfun_0.48 zlibbioc_1.52.0 cachem_1.1.0
#> [25] jsonlite_1.8.9 SnowballC_0.7.1 later_1.3.2
#> [28] DelayedArray_0.32.0 BiocParallel_1.40.0 parallel_4.4.1
#> [31] sets_1.0-25 cluster_2.1.6 R6_2.5.1
#> [34] stringi_1.8.4 bslib_0.8.0 RColorBrewer_1.1-3
#> [37] qs_0.27.2 limma_3.62.0 pkgload_1.4.0
#> [40] boot_1.3-31 brio_1.1.5 jquerylib_0.1.4
#> [43] assertthat_0.2.1 Rcpp_1.0.13 knitr_1.48
#> [46] downloader_0.4 httpuv_1.6.15 Matrix_1.7-1
#> [49] igraph_2.1.1 tidyselect_1.2.1 abind_1.4-8
#> [52] yaml_2.3.10 stringfish_0.16.0 gplots_3.2.0
#> [55] codetools_0.2-20 lattice_0.22-6 tibble_3.2.1
#> [58] plyr_1.8.9 shiny_1.9.1 BumpyMatrix_1.14.0
#> [61] evaluate_1.0.1 desc_1.4.3 RcppParallel_5.1.9
#> [64] bench_1.1.3 pillar_1.9.0 lsa_0.73.3
#> [67] KernSmooth_2.23-24 checkmate_2.3.2 DT_0.33
#> [70] shinyjs_2.1.0 piano_2.22.0 generics_0.1.3
#> [73] rprojroot_2.0.4 ggplot2_3.5.1 munsell_0.5.1
#> [76] scales_1.3.0 RApiSerialize_0.1.4 gtools_3.9.5
#> [79] xtable_1.8-4 marray_1.84.0 glue_1.8.0
#> [82] slam_0.1-54 tools_4.4.1 data.table_1.16.2
#> [85] gDRutils_1.4.0 fgsea_1.32.0 visNetwork_2.1.2
#> [88] fastmatch_1.1-4 cowplot_1.1.3 grid_4.4.1
#> [91] colorspace_2.1-1 GenomeInfoDbData_1.2.13 cli_3.6.3
#> [94] fansi_1.0.6 S4Arrays_1.6.0 dplyr_1.1.4
#> [97] gtable_0.3.6 sass_0.4.9 digest_0.6.37
#> [100] SparseArray_1.6.0 htmlwidgets_1.6.4 htmltools_0.5.8.1
#> [103] lifecycle_1.0.4 httr_1.4.7 statmod_1.5.0
#> [106] mime_0.12