Contents

1 Integrating an HDF5 backend for MultiAssayExperiment

1.1 Dependencies

library(MultiAssayExperiment)
library(HDF5Array)
library(SummarizedExperiment)

1.2 HDF5Array and DelayedArray Constructor

The HDF5Array package provides an on-disk representation of large datasets without the need to load them into memory. Convenient lazy evaluation operations allow the user to manipulate such large data files based on metadata. The DelayedMatrix class in the DelayedArray package provides a way to connect to a large matrix that is stored on disk.

First, we create a small matrix for constructing the DelayedMatrix class.

smallMatrix <- matrix(rnorm(10e5), ncol = 20)

We add rownames and column names to the matrix object for compatibility with the MultiAssayExperiment representation.

rownames(smallMatrix) <- paste0("GENE", seq_len(nrow(smallMatrix)))
colnames(smallMatrix) <- paste0("SampleID", seq_len(ncol(smallMatrix)))

Here we use the DelayedArray constructor function to create a DelayedMatrix object.

smallMatrix <- DelayedArray(smallMatrix)
class(smallMatrix)
## [1] "DelayedMatrix"
## attr(,"package")
## [1] "DelayedArray"
# show method
smallMatrix
## <50000 x 20> DelayedMatrix object of type "double":
##             SampleID1   SampleID2   SampleID3 ... SampleID19 SampleID20
##     GENE1 -0.18887103  1.09083974  2.09809648   .  0.0977206  0.3787986
##     GENE2  0.54963472  1.71513941  0.48669342   .  1.4635422 -1.3136752
##     GENE3 -1.64625510 -0.66453317 -1.00929880   .  0.3950160  0.3117131
##     GENE4 -0.78626461 -1.34779721 -0.92023979   . -0.4465493 -0.1407448
##     GENE5 -1.04601719  1.69268757 -0.07344991   .  0.7745514  0.3378580
##       ...           .           .           .   .          .          .
## GENE49996   1.4462806   2.0249158  -1.9108094   . -1.1589233  0.2943175
## GENE49997   2.6765908   2.2457100  -0.8261645   . -0.2482862 -0.8784643
## GENE49998  -0.4853322   1.1082955  -0.5791624   . -0.5101795 -0.5638753
## GENE49999   0.7297254  -0.7982212  -1.5299772   .  0.6440837 -1.3567900
## GENE50000   0.4076690   1.7122761   0.7665569   . -1.4577439  0.5875690
dim(smallMatrix)
## [1] 50000    20

1.3 Writing to a file with dimnames

Finally, the rhdf5 package stores dimnames in a standard location.

In order to make use of this functionality, we would use writeHDF5Array with the with.dimnames argument:

testh5 <- tempfile(fileext = ".h5")
writeHDF5Array(smallMatrix, filepath = testh5, name = "smallMatrix",
    with.dimnames = TRUE)
## <50000 x 20> HDF5Matrix object of type "double":
##             SampleID1   SampleID2   SampleID3 ... SampleID19 SampleID20
##     GENE1 -0.18887103  1.09083974  2.09809648   .  0.0977206  0.3787986
##     GENE2  0.54963472  1.71513941  0.48669342   .  1.4635422 -1.3136752
##     GENE3 -1.64625510 -0.66453317 -1.00929880   .  0.3950160  0.3117131
##     GENE4 -0.78626461 -1.34779721 -0.92023979   . -0.4465493 -0.1407448
##     GENE5 -1.04601719  1.69268757 -0.07344991   .  0.7745514  0.3378580
##       ...           .           .           .   .          .          .
## GENE49996   1.4462806   2.0249158  -1.9108094   . -1.1589233  0.2943175
## GENE49997   2.6765908   2.2457100  -0.8261645   . -0.2482862 -0.8784643
## GENE49998  -0.4853322   1.1082955  -0.5791624   . -0.5101795 -0.5638753
## GENE49999   0.7297254  -0.7982212  -1.5299772   .  0.6440837 -1.3567900
## GENE50000   0.4076690   1.7122761   0.7665569   . -1.4577439  0.5875690

To see the file structure we use h5ls:

h5ls(testh5)
##                    group                  name       otype dclass        dim
## 0                      / .smallMatrix_dimnames   H5I_GROUP                  
## 1 /.smallMatrix_dimnames                     1 H5I_DATASET STRING      50000
## 2 /.smallMatrix_dimnames                     2 H5I_DATASET STRING         20
## 3                      /           smallMatrix H5I_DATASET  FLOAT 50000 x 20

1.4 Importing HDF5 files

Note that a large matrix from an HDF5 file can also be loaded using the HDF5ArraySeed and DelayedArray functions.

hdf5Data <- HDF5ArraySeed(file = testh5, name = "smallMatrix")
newDelayedMatrix <- DelayedArray(hdf5Data)
class(newDelayedMatrix)
## [1] "HDF5Matrix"
## attr(,"package")
## [1] "HDF5Array"
newDelayedMatrix
## <50000 x 20> HDF5Matrix object of type "double":
##             SampleID1   SampleID2   SampleID3 ... SampleID19 SampleID20
##     GENE1 -0.18887103  1.09083974  2.09809648   .  0.0977206  0.3787986
##     GENE2  0.54963472  1.71513941  0.48669342   .  1.4635422 -1.3136752
##     GENE3 -1.64625510 -0.66453317 -1.00929880   .  0.3950160  0.3117131
##     GENE4 -0.78626461 -1.34779721 -0.92023979   . -0.4465493 -0.1407448
##     GENE5 -1.04601719  1.69268757 -0.07344991   .  0.7745514  0.3378580
##       ...           .           .           .   .          .          .
## GENE49996   1.4462806   2.0249158  -1.9108094   . -1.1589233  0.2943175
## GENE49997   2.6765908   2.2457100  -0.8261645   . -0.2482862 -0.8784643
## GENE49998  -0.4853322   1.1082955  -0.5791624   . -0.5101795 -0.5638753
## GENE49999   0.7297254  -0.7982212  -1.5299772   .  0.6440837 -1.3567900
## GENE50000   0.4076690   1.7122761   0.7665569   . -1.4577439  0.5875690

1.5 Using a DelayedMatrix with MultiAssayExperiment

A DelayedMatrix alone conforms to the MultiAssayExperiment API requirements. Shown below, the DelayedMatrix can be put into a named list and passed into the MultiAssayExperiment constructor function.

HDF5MAE <- MultiAssayExperiment(experiments = list(smallMatrix = smallMatrix))
sampleMap(HDF5MAE)
## DataFrame with 20 rows and 3 columns
##           assay     primary     colname
##        <factor> <character> <character>
## 1   smallMatrix   SampleID1   SampleID1
## 2   smallMatrix   SampleID2   SampleID2
## 3   smallMatrix   SampleID3   SampleID3
## 4   smallMatrix   SampleID4   SampleID4
## 5   smallMatrix   SampleID5   SampleID5
## ...         ...         ...         ...
## 16  smallMatrix  SampleID16  SampleID16
## 17  smallMatrix  SampleID17  SampleID17
## 18  smallMatrix  SampleID18  SampleID18
## 19  smallMatrix  SampleID19  SampleID19
## 20  smallMatrix  SampleID20  SampleID20
colData(HDF5MAE)
## DataFrame with 20 rows and 0 columns

1.5.1 SummarizedExperiment with DelayedMatrix backend

A more information rich DelayedMatrix can be created when used in conjunction with the SummarizedExperiment class and it can even include rowRanges. The flexibility of the MultiAssayExperiment API supports classes with minimal requirements. Additionally, this SummarizedExperiment with the DelayedMatrix backend can be part of a bigger MultiAssayExperiment object. Below is a minimal example of how this would work:

HDF5SE <- SummarizedExperiment(assays = smallMatrix)
assay(HDF5SE)
## <50000 x 20> DelayedMatrix object of type "double":
##             SampleID1   SampleID2   SampleID3 ... SampleID19 SampleID20
##     GENE1 -0.18887103  1.09083974  2.09809648   .  0.0977206  0.3787986
##     GENE2  0.54963472  1.71513941  0.48669342   .  1.4635422 -1.3136752
##     GENE3 -1.64625510 -0.66453317 -1.00929880   .  0.3950160  0.3117131
##     GENE4 -0.78626461 -1.34779721 -0.92023979   . -0.4465493 -0.1407448
##     GENE5 -1.04601719  1.69268757 -0.07344991   .  0.7745514  0.3378580
##       ...           .           .           .   .          .          .
## GENE49996   1.4462806   2.0249158  -1.9108094   . -1.1589233  0.2943175
## GENE49997   2.6765908   2.2457100  -0.8261645   . -0.2482862 -0.8784643
## GENE49998  -0.4853322   1.1082955  -0.5791624   . -0.5101795 -0.5638753
## GENE49999   0.7297254  -0.7982212  -1.5299772   .  0.6440837 -1.3567900
## GENE50000   0.4076690   1.7122761   0.7665569   . -1.4577439  0.5875690
MultiAssayExperiment(list(HDF5SE = HDF5SE))
## A MultiAssayExperiment object of 1 listed
##  experiment with a user-defined name and respective class.
##  Containing an ExperimentList class object of length 1:
##  [1] HDF5SE: SummarizedExperiment with 50000 rows and 20 columns
## Functionality:
##  experiments() - obtain the ExperimentList instance
##  colData() - the primary/phenotype DataFrame
##  sampleMap() - the sample coordination DataFrame
##  `$`, `[`, `[[` - extract colData columns, subset, or experiment
##  *Format() - convert into a long or wide DataFrame
##  assays() - convert ExperimentList to a SimpleList of matrices
##  exportClass() - save data to flat files

Additional scenarios are currently in development where an HDF5Matrix is hosted remotely. Many opportunities exist when considering on-disk and off-disk representations of data with MultiAssayExperiment.

2 Session info

sessionInfo()
## R version 4.3.1 (2023-06-16)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 22.04.3 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.18-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_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] HDF5Array_1.30.0            rhdf5_2.46.0               
##  [3] DelayedArray_0.28.0         SparseArray_1.2.0          
##  [5] S4Arrays_1.2.0              abind_1.4-5                
##  [7] Matrix_1.6-1.1              survminer_0.4.9            
##  [9] ggpubr_0.6.0                ggplot2_3.4.4              
## [11] survival_3.5-7              UpSetR_1.4.0               
## [13] RaggedExperiment_1.26.0     MultiAssayExperiment_1.28.0
## [15] SummarizedExperiment_1.32.0 Biobase_2.62.0             
## [17] GenomicRanges_1.54.0        GenomeInfoDb_1.38.0        
## [19] IRanges_2.36.0              S4Vectors_0.40.0           
## [21] BiocGenerics_0.48.0         MatrixGenerics_1.14.0      
## [23] matrixStats_1.0.0           BiocStyle_2.30.0           
## 
## loaded via a namespace (and not attached):
##  [1] tidyselect_1.2.0        dplyr_1.1.3             farver_2.1.1           
##  [4] R.utils_2.12.2          bitops_1.0-7            fastmap_1.1.1          
##  [7] RCurl_1.98-1.12         digest_0.6.33           lifecycle_1.0.3        
## [10] magrittr_2.0.3          compiler_4.3.1          rlang_1.1.1            
## [13] sass_0.4.7              tools_4.3.1             utf8_1.2.4             
## [16] yaml_2.3.7              data.table_1.14.8       knitr_1.44             
## [19] ggsignif_0.6.4          labeling_0.4.3          xml2_1.3.5             
## [22] plyr_1.8.9              R.cache_0.16.0          withr_2.5.1            
## [25] purrr_1.0.2             R.oo_1.25.0             grid_4.3.1             
## [28] fansi_1.0.5             xtable_1.8-4            colorspace_2.1-0       
## [31] Rhdf5lib_1.24.0         scales_1.2.1            cli_3.6.1              
## [34] rmarkdown_2.25          crayon_1.5.2            generics_0.1.3         
## [37] km.ci_0.5-6             commonmark_1.9.0        BiocBaseUtils_1.4.0    
## [40] cachem_1.0.8            stringr_1.5.0           zlibbioc_1.48.0        
## [43] splines_4.3.1           BiocManager_1.30.22     XVector_0.42.0         
## [46] survMisc_0.5.6          vctrs_0.6.4             jsonlite_1.8.7         
## [49] carData_3.0-5           bookdown_0.36           car_3.1-2              
## [52] rstatix_0.7.2           magick_2.8.1            tidyr_1.3.0            
## [55] jquerylib_0.1.4         glue_1.6.2              ggtext_0.1.2           
## [58] stringi_1.7.12          gtable_0.3.4            munsell_0.5.0          
## [61] tibble_3.2.1            pillar_1.9.0            rhdf5filters_1.14.0    
## [64] htmltools_0.5.6.1       GenomeInfoDbData_1.2.11 R6_2.5.1               
## [67] KMsurv_0.1-5            evaluate_0.22           lattice_0.22-5         
## [70] markdown_1.11           R.methodsS3_1.8.2       backports_1.4.1        
## [73] gridtext_0.1.5          broom_1.0.5             bslib_0.5.1            
## [76] Rcpp_1.0.11             R.rsp_0.45.0            gridExtra_2.3          
## [79] xfun_0.40               zoo_1.8-12              pkgconfig_2.0.3