Contents

1 Introduction

updateObject is an R package that provides a set of tools built around the updateObject() generic function to make it easy to work with old serialized S4 instances.

The package is primarily useful to package maintainers who want to update the serialized S4 instances included in their package.

2 Out-of-sync objects

Out-of-sync objects (a.k.a. outdated or old objects) are R objects that got serialized at some point and became out-of-sync later on when the authors/maintainers of an S4 class made some changes to the internals of the class.

A typical example of this situation is when some slots of an S4 class A get added, removed, or renamed. When this happens, any object of class A (a.k.a. A instance) that got serialized before this change (i.e. written to disk with saveRDS(), save(), or serialize()) becomes out-of-sync with the new class definition.

Note that this is also the case of any A derivative (i.e. any object that belongs to a class that extends A), as well as any object that contains an A instance or derivative. For example, if B extends A, then any serialized list of A or B objects is now an old object, and any S4 object of class C that has A or B objects in some of its slots now is also an old object.

An important thing to keep in mind is that, in fact, the exact parts of a serialized object x that are out-of-sync with their class definition can be deeply nested inside x.

3 The updateObject() generic function

updateObject() is the core function used in Bioconductor for updating old R objects. The function is an S4 generic currently defined in the BiocGenerics package and with dozens of methods defined across many Bioconductor packages. For example, the S4Vectors package defines updateObject() methods for Vector, SimpleList, DataFrame, and Hits objects, the SummarizedExperiment package defines methods for SummarizedExperiment, RangedSummarizedExperiment, and Assays objects, the MultiAssayExperiment package defines a method for MultiAssayExperiment objects, the QFeatures package a method for QFeatures objects, etc…

See ?BiocGenerics::updateObject in the BiocGenerics package for more information.

4 A tedious process

Serialized objects are typically (but not exclusively) found in R packages. To update all the serialized objects contained in a given package, one usually needs to perform the following steps:

In addition to the above steps, the package maintainer also needs to perform the usual steps required for updating a package and publishing its new version. In the case of a Bioconductor package, these steps are:

Performing all the above steps manually can be tedious and error prone, especially if the package contains many serialized objects, or if the entire procedure needs to be performed on a big collection of packages. The updateObject package provides a set of tools that intend to make this much easier.

5 updateBiocPackageRepoObjects()

updateBiocPackageRepoObjects() is the central function in the updateObject package. It takes care of updating the serialized objects contained in a given Bioconductor package by performing all the steps described in the previous section.

Let’s load updateObject:

library(updateObject)

and try updateBiocPackageRepoObjects() on the RELEASE_3_14 branch of the BiSeq package:

repopath <- file.path(tempdir(), "BiSeq")
updateBiocPackageRepoObjects(repopath, branch="RELEASE_3_14", use.https=TRUE)
## Cloning into '/tmp/RtmpQHwsLE/BiSeq'...
## 
## RUNNING 'updatePackageObjects("/tmp/RtmpQHwsLE/BiSeq", bump.Version=TRUE)'...
## File /tmp/RtmpQHwsLE/BiSeq/data/DMRs.RData: load().. ok [1 object(s)]; updateObject(GRanges, check=FALSE).. object updated; saving file.. OK ==> 1
## File /tmp/RtmpQHwsLE/BiSeq/data/betaResults.RData: load().. ok [1 object(s)]; updateObject(data.frame, check=FALSE).. no-op; nothing to update ==> 0
## File /tmp/RtmpQHwsLE/BiSeq/data/betaResultsNull.RData: load().. ok [1 object(s)]; updateObject(data.frame, check=FALSE).. no-op; nothing to update ==> 0
## File /tmp/RtmpQHwsLE/BiSeq/data/predictedMeth.RData: load().. ok [1 object(s)]; updateObject(BSrel, check=FALSE).. object updated; saving file.. OK ==> 1
## File /tmp/RtmpQHwsLE/BiSeq/data/promoters.RData: load().. ok [1 object(s)]; updateObject(GRanges, check=FALSE).. object updated; saving file.. OK ==> 1
## File /tmp/RtmpQHwsLE/BiSeq/data/rrbs.RData: load().. ok [1 object(s)]; updateObject(BSraw, check=FALSE).. object updated; saving file.. OK ==> 1
## File /tmp/RtmpQHwsLE/BiSeq/data/vario.RData: load().. ok [1 object(s)]; updateObject(list, check=FALSE).. no-op; nothing to update ==> 0
## diff --git a/DESCRIPTION b/DESCRIPTION
## index df756f4..9c2d9d4 100644
## --- a/DESCRIPTION
## +++ b/DESCRIPTION
## @@ -1,8 +1,8 @@
##  Package: BiSeq
##  Type: Package
##  Title: Processing and analyzing bisulfite sequencing data
## -Version: 1.34.0
## -Date: 2020-03-27
## +Version: 1.34.1
## +Date: 2024-09-03
##  Author: Katja Hebestreit, Hans-Ulrich Klein
##  Maintainer: Katja Hebestreit <katja.hebestreit@gmail.com>
##  Depends: R (>= 2.15.2), methods, S4Vectors, IRanges (>= 1.17.24),
## diff --git a/data/DMRs.RData b/data/DMRs.RData
## index 4d94fd5..8279671 100644
## Binary files a/data/DMRs.RData and b/data/DMRs.RData differ
## diff --git a/data/predictedMeth.RData b/data/predictedMeth.RData
## index c3d927e..a26e928 100644
## Binary files a/data/predictedMeth.RData and b/data/predictedMeth.RData differ
## diff --git a/data/promoters.RData b/data/promoters.RData
## index ffb1482..c114d34 100644
## Binary files a/data/promoters.RData and b/data/promoters.RData differ
## diff --git a/data/rrbs.RData b/data/rrbs.RData
## index a84972c..27cfff6 100644
## Binary files a/data/rrbs.RData and b/data/rrbs.RData differ
## 
## [RELEASE_3_14 29b2f4d] Pass serialized S4 instances thru updateObject()
##  5 files changed, 2 insertions(+), 2 deletions(-)
##  rewrite data/DMRs.RData (100%)
##  rewrite data/predictedMeth.RData (99%)
##  rewrite data/promoters.RData (97%)
##  rewrite data/rrbs.RData (98%)
## 
## UPDATE OBJECTS >> UPDATE DESCRIPTION FILE >> COMMIT SUCCESSFUL.

Important notes:

See ?updateBiocPackageRepoObjects for more information and more examples.

6 List of tools provided by the updateObject package

The package provides the following tools:

See individual man pages in the package for more information e.g. ?updatePackageObjects.

7 Session information

sessionInfo()
## R version 4.4.1 (2024-06-14)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 22.04.4 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.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] SummarizedExperiment_1.35.1 BiSeq_1.45.0               
## [3] IRanges_2.39.2              GenomicRanges_1.57.1       
## [5] updateObject_1.9.1          S4Vectors_0.43.2           
## [7] BiocGenerics_0.51.1         BiocStyle_2.33.1           
## 
## loaded via a namespace (and not attached):
##  [1] KEGGREST_1.45.1          rjson_0.2.22             xfun_0.47               
##  [4] bslib_0.8.0              globaltest_5.59.0        Biobase_2.65.1          
##  [7] lattice_0.22-6           vctrs_0.6.5              tools_4.4.1             
## [10] bitops_1.0-8             curl_5.2.2               parallel_4.4.1          
## [13] flexmix_2.3-19           sandwich_3.1-0           RSQLite_2.3.7           
## [16] AnnotationDbi_1.67.0     blob_1.2.4               lokern_1.1-12           
## [19] Matrix_1.7-0             lifecycle_1.0.4          GenomeInfoDbData_1.2.12 
## [22] compiler_4.4.1           Rsamtools_2.21.1         Biostrings_2.73.1       
## [25] codetools_0.2-20         GenomeInfoDb_1.41.1      htmltools_0.5.8.1       
## [28] sass_0.4.9               RCurl_1.98-1.16          yaml_2.3.10             
## [31] Formula_1.2-5            crayon_1.5.3             jquerylib_0.1.4         
## [34] BiocParallel_1.39.0      DelayedArray_0.31.11     cachem_1.1.0            
## [37] betareg_3.2-0            abind_1.4-5              digest_0.6.37           
## [40] restfulr_0.0.15          bookdown_0.40            splines_4.4.1           
## [43] fastmap_1.2.0            grid_4.4.1               cli_3.6.3               
## [46] SparseArray_1.5.31       S4Arrays_1.5.7           survival_3.7-0          
## [49] XML_3.99-0.17            UCSC.utils_1.1.0         bit64_4.0.5             
## [52] rmarkdown_2.28           XVector_0.45.0           httr_1.4.7              
## [55] matrixStats_1.3.0        bit_4.0.5                nnet_7.3-19             
## [58] png_0.1-8                zoo_1.8-12               modeltools_0.2-23       
## [61] memoise_2.0.1            evaluate_0.24.0          knitr_1.48              
## [64] BiocIO_1.15.2            lmtest_0.9-40            rtracklayer_1.65.0      
## [67] rlang_1.1.4              DBI_1.2.3                xtable_1.8-4            
## [70] BiocManager_1.30.25      annotate_1.83.0          jsonlite_1.8.8          
## [73] R6_2.5.1                 MatrixGenerics_1.17.0    GenomicAlignments_1.41.0
## [76] zlibbioc_1.51.1          sfsmisc_1.1-19