Contents

1 Overview

The alabaster.matrix package implements methods to save matrix-like objects to file artifacts and load them back into R. Check out the alabaster.base for more details on the motivation and the alabaster framework.

2 Quick start

Given an array-like object, we can use saveObject() to save it inside a staging directory:

library(Matrix)
y <- rsparsematrix(1000, 100, density=0.05)

library(alabaster.matrix)
tmp <- tempfile()
saveObject(y, tmp)

list.files(tmp, recursive=TRUE)
## [1] "OBJECT"    "matrix.h5"

We then load it back into our R session with loadObject(). This creates a HDF5-backed S4 array that can be easily coerced into the desired format, e.g., a dgCMatrix.

roundtrip <- readObject(tmp)
class(roundtrip)
## [1] "ReloadedMatrix"
## attr(,"package")
## [1] "alabaster.matrix"

This process is supported for all base arrays, Matrix objects and DelayedArray objects.

3 Saving delayed operations

🚧🚧🚧 Oops. Yet to migrate the delayed operations to the new saveObject/readObject world - stay tuned. 🚧🚧🚧

Session information

sessionInfo()
## R version 4.4.0 RC (2024-04-16 r86468 ucrt)
## Platform: x86_64-w64-mingw32/x64
## Running under: Windows Server 2022 x64 (build 20348)
## 
## Matrix products: default
## 
## 
## locale:
## [1] LC_COLLATE=C                          
## [2] LC_CTYPE=English_United States.utf8   
## [3] LC_MONETARY=English_United States.utf8
## [4] LC_NUMERIC=C                          
## [5] LC_TIME=English_United States.utf8    
## 
## time zone: America/New_York
## tzcode source: internal
## 
## attached base packages:
## [1] stats     graphics  grDevices utils     datasets  methods   base     
## 
## other attached packages:
## [1] alabaster.matrix_1.5.0 alabaster.base_1.5.0   Matrix_1.7-0          
## [4] BiocStyle_2.33.0      
## 
## loaded via a namespace (and not attached):
##  [1] jsonlite_1.8.8          compiler_4.4.0          BiocManager_1.30.22    
##  [4] crayon_1.5.2            Rcpp_1.0.12             rhdf5filters_1.17.0    
##  [7] jquerylib_0.1.4         IRanges_2.39.0          yaml_2.3.8             
## [10] fastmap_1.1.1           lattice_0.22-6          R6_2.5.1               
## [13] XVector_0.45.0          S4Arrays_1.5.0          knitr_1.46             
## [16] BiocGenerics_0.51.0     DelayedArray_0.31.0     bookdown_0.39          
## [19] MatrixGenerics_1.17.0   bslib_0.7.0             rlang_1.1.3            
## [22] cachem_1.0.8            HDF5Array_1.33.0        xfun_0.43              
## [25] sass_0.4.9              SparseArray_1.5.0       cli_3.6.2              
## [28] Rhdf5lib_1.27.0         zlibbioc_1.51.0         digest_0.6.35          
## [31] grid_4.4.0              alabaster.schemas_1.5.0 rhdf5_2.49.0           
## [34] lifecycle_1.0.4         S4Vectors_0.43.0        evaluate_0.23          
## [37] abind_1.4-5             stats4_4.4.0            rmarkdown_2.26         
## [40] matrixStats_1.3.0       tools_4.4.0             htmltools_0.5.8.1