Converting PharmacoSet Drug Response Data into gDR object

Jermiah Joseph

jermiah.joseph@uhn.ca

Bartosz Czech

bartosz.w.czech@gmail.com
library(PharmacoGx)
library(gDRimport)

Overview

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.

Loading a PharmacoSet (PSet)

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.

pset <- getPSet("Tavor_2020")
pset

Converting PharmacoSet to data.table for gDR pipeline

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>

Subsetting to extract relevant information

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

Running drug response pipeline with data

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()

# RUN DRUG RESPONSE PROCESSING PIPELINE
se <- gDRcore::runDrugResponseProcessingPipeline(x)
se
# Convert Summarized Experiments to data.table 
# Available SEs : "RawTreatred", "Controls", "Normalized", "Averaged", "Metrics"

str(gDRutils::convert_se_assay_to_dt(se[[1]], "Averaged"))
str(gDRutils::convert_se_assay_to_dt(se[[1]], "Metrics"))

SessionInfo

sessionInfo()
#> R version 4.4.0 beta (2024-04-15 r86425)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 22.04.4 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.19-bioc/R/lib/libRblas.so 
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
#>  [3] LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8    
#>  [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.30.0 gDRimport_1.2.0            
#>  [3] PharmacoGx_3.8.0            CoreGx_2.8.0               
#>  [5] SummarizedExperiment_1.34.0 Biobase_2.64.0             
#>  [7] GenomicRanges_1.56.0        GenomeInfoDb_1.40.0        
#>  [9] IRanges_2.38.0              S4Vectors_0.42.0           
#> [11] MatrixGenerics_1.16.0       matrixStats_1.3.0          
#> [13] BiocGenerics_0.50.0        
#> 
#> loaded via a namespace (and not attached):
#>   [1] bitops_1.0-7            testthat_3.2.1.1        rlang_1.1.3            
#>   [4] magrittr_2.0.3          shinydashboard_0.7.2    compiler_4.4.0         
#>   [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.2           
#>  [13] fastmap_1.1.1           backports_1.4.1         XVector_0.44.0         
#>  [16] caTools_1.18.2          utf8_1.2.4              promises_1.3.0         
#>  [19] rmarkdown_2.26          UCSC.utils_1.0.0        coop_0.6-3             
#>  [22] xfun_0.43               zlibbioc_1.50.0         cachem_1.0.8           
#>  [25] jsonlite_1.8.8          SnowballC_0.7.1         later_1.3.2            
#>  [28] DelayedArray_0.30.0     BiocParallel_1.38.0     parallel_4.4.0         
#>  [31] sets_1.0-25             cluster_2.1.6           R6_2.5.1               
#>  [34] stringi_1.8.3           bslib_0.7.0             RColorBrewer_1.1-3     
#>  [37] qs_0.26.1               limma_3.60.0            pkgload_1.3.4          
#>  [40] boot_1.3-30             brio_1.1.5              jquerylib_0.1.4        
#>  [43] assertthat_0.2.1        Rcpp_1.0.12             knitr_1.46             
#>  [46] downloader_0.4          httpuv_1.6.15           Matrix_1.7-0           
#>  [49] igraph_2.0.3            tidyselect_1.2.1        abind_1.4-5            
#>  [52] yaml_2.3.8              stringfish_0.16.0       gplots_3.1.3.1         
#>  [55] codetools_0.2-20        lattice_0.22-6          tibble_3.2.1           
#>  [58] plyr_1.8.9              shiny_1.8.1.1           BumpyMatrix_1.12.0     
#>  [61] evaluate_0.23           desc_1.4.3              RcppParallel_5.1.7     
#>  [64] bench_1.1.3             pillar_1.9.0            lsa_0.73.3             
#>  [67] KernSmooth_2.23-22      checkmate_2.3.1         DT_0.33                
#>  [70] shinyjs_2.1.0           piano_2.20.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.2     gtools_3.9.5           
#>  [79] xtable_1.8-4            marray_1.82.0           glue_1.7.0             
#>  [82] slam_0.1-50             tools_4.4.0             data.table_1.15.4      
#>  [85] gDRutils_1.2.0          fgsea_1.30.0            visNetwork_2.1.2       
#>  [88] fastmatch_1.1-4         cowplot_1.1.3           grid_4.4.0             
#>  [91] colorspace_2.1-0        GenomeInfoDbData_1.2.12 cli_3.6.2              
#>  [94] fansi_1.0.6             S4Arrays_1.4.0          dplyr_1.1.4            
#>  [97] gtable_0.3.5            sass_0.4.9              digest_0.6.35          
#> [100] SparseArray_1.4.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