Storing Mass Spectrometry Data in SQL Databases

Package: MsBackendSql
Authors: Johannes Rainer [aut, cre] (ORCID: https://orcid.org/0000-0002-6977-7147), Chong Tang [ctb], Laurent Gatto [ctb] (ORCID: https://orcid.org/0000-0002-1520-2268)
Compiled: Mon May 4 09:14:54 2026

Introduction

The Spectra Bioconductor package provides a flexible and expandable infrastructure for Mass Spectrometry (MS) data. The package supports interchangeable use of different backends that provide additional file support or different ways to store and represent MS data. The MsBackendSql package provides backends to store data from whole MS experiments in SQL databases. The data in such databases can be easily (and efficiently) accessed using Spectra objects that use the MsBackendSql class as an interface to the data in the database. Such Spectra objects have a minimal memory footprint and hence allow analysis of very large data sets even on computers with limited hardware capabilities. For certain operations, the performance of this data representation is superior to that of other low-memory (on-disk) data representations such as Spectra’s MsBackendMzR backend. Finally, the MsBackendSql supports also remote data access to e.g. a central database server hosting several large MS data sets.

Installation

The package can be installed with the BiocManager package. To install BiocManager use install.packages("BiocManager") and, after that, BiocManager::install("MsBackendSql") to install this package.

Creating and using MsBackendSql SQL databases

MsBackendSql SQL databases can be created either by importing (raw) MS data from MS data files using the createMsBackendSqlDatabase() or using the backendInitialize() function by providing in addition to the database connection also the full MS data to import as a DataFrame. In the first example we use the createMsBackendSqlDatabase() function to import the full MS data from the provided MS data files into an (empty) database. Below we first create an empty SQLite database (in a temporary file) and use the createMsBackendSqlDatabase() function to create all necessary tables in that database and import the MS data from two mzML files (provided throuth the r Biocpkg("MsDataHub") package).

library(RSQLite)

dbfile <- tempfile()
con <- dbConnect(SQLite(), dbfile)

library(Spectra)
library(MsBackendSql)
fls <- c(MsDataHub::X20171016_POOL_POS_1_105.134.mzML(),
         MsDataHub::X20171016_POOL_POS_3_105.134.mzML())
createMsBackendSqlDatabase(con, fls)
dbDisconnect(con)

By default (with parameters blob = TRUE and peaksStorageMode = "blob2") the peaks data matrix of each spectrum is stored as a BLOB data type into the database (one entry per spectrum). This has advantages on the performance to extract the peaks data from the database, but does not allow to filter individual peaks by their m/z or intensity values directly in the database. As an alternative (using blob = FALSE) it is also possible to store the individual m/z and intensity values in separate columns of the database table. This long table format results however in considerably larger databases (with potentially poorer performance). Note also that the code and backend is optimized for MySQL/MariaDB databases by taking advantage of table partitioning and specialized table storage options. Any other SQL database server is however also supported (also portable, self-contained SQLite databases). In fact, performance for MsBackendSql databases with peaks data stored as BLOB data type is similar for SQLite and MySQL/MariaDB databases.

The MsBackendSql package provides two backends to interact with such databases: the MsBackendSql class and the MsBackendOfflineSql class, that inherits all properties and functions from the former, but does not store the connection to the database within the object. The MsBackendOfflineSql object thus supports parallel processing and allows to save/load the object (e.g. using save and saveRDS). The MsBackendOfflineSql might therefore be used as the preferred backend to SQL databases for most applications.

To access the data in the database we create below a Spectra object providing the database connection information in the constructor call and specifying to use the MsBackendOfflineSql as backend (parameter source). We stored the data to a SQLite database, thus we provide the database name (SQLite database file name) and the SQLite DBI driver with parameters dbname and drv. Which parameters are required to connect to the database depends on the SQL database and the used driver. For a MySQL/MariaDB database we would use the MariaDB() driver and would have to provide the database name, user name, password as well as the host name and port through which the database is accessible.

sps <- Spectra(dbname = dbfile, source = MsBackendOfflineSql(), drv = SQLite())
sps
## MSn data (Spectra) with 1862 spectra in a MsBackendOfflineSql backend:
##        msLevel precursorMz  polarity
##      <integer>   <numeric> <integer>
## 1            1          NA         1
## 2            1          NA         1
## 3            1          NA         1
## 4            1          NA         1
## 5            1          NA         1
## ...        ...         ...       ...
## 1858         1          NA         1
## 1859         1          NA         1
## 1860         1          NA         1
## 1861         1          NA         1
## 1862         1          NA         1
##  ... 35 more variables/columns.
##  Use  'spectraVariables' to list all of them.
## Database: /tmp/RtmpmzgHDo/file13e2f82b1

Spectra objects allow also to change the backend to any other backend (extending MsBackend) using the setBackend() function. Below we use this function to first load all data into memory by changing from the MsBackendOfflineSql to a MsBackendMemory.

sps_mem <- setBackend(sps, MsBackendMemory())
sps_mem
## MSn data (Spectra) with 1862 spectra in a MsBackendMemory backend:
##        msLevel     rtime scanIndex
##      <integer> <numeric> <integer>
## 1            1     0.280         1
## 2            1     0.559         2
## 3            1     0.838         3
## 4            1     1.117         4
## 5            1     1.396         5
## ...        ...       ...       ...
## 1858         1   258.636       927
## 1859         1   258.915       928
## 1860         1   259.194       929
## 1861         1   259.473       930
## 1862         1   259.752       931
##  ... 35 more variables/columns.
## Processing:
##  Switch backend from MsBackendOfflineSql to MsBackendMemory [Mon May  4 09:15:06 2026]

With this function it is also possible to change from any backend to a MsBackendOfflineSql (or MsBackendSql) in which case a new database is created and all data from the originating backend is stored in this database. To change the backend to an MsBackendOfflineSql we need to provide the connection information to the SQL database as additional parameters. These parameters are the same that need to be passed to a dbConnect() call to establish the connection to the database. These parameters include the database driver (parameter drv), the database name and eventually the user name, host etc (see ?dbConnect for more information). In the simple example below we store the data into a SQLite database and thus only need to provide the database name, which corresponds SQLite database file. In our example we store the data into a temporary file. Optionally, setBackend() supports also the parameters blob and peaksDataStorage described above for the createMsBackendSqlDatabase() function.

sps2 <- setBackend(sps_mem, MsBackendOfflineSql(), drv = SQLite(),
                   dbname = tempfile())
sps2
## MSn data (Spectra) with 1862 spectra in a MsBackendOfflineSql backend:
##        msLevel precursorMz  polarity
##      <integer>   <numeric> <integer>
## 1            1          NA         1
## 2            1          NA         1
## 3            1          NA         1
## 4            1          NA         1
## 5            1          NA         1
## ...        ...         ...       ...
## 1858         1          NA         1
## 1859         1          NA         1
## 1860         1          NA         1
## 1861         1          NA         1
## 1862         1          NA         1
##  ... 35 more variables/columns.
##  Use  'spectraVariables' to list all of them.
## Database: /tmp/RtmpmzgHDo/file13e261010e4
## Processing:
##  Switch backend from MsBackendOfflineSql to MsBackendMemory [Mon May  4 09:15:06 2026]
##  Switch backend from MsBackendMemory to MsBackendOfflineSql [Mon May  4 09:15:06 2026]

Similar to any other Spectra object we can retrieve the available spectra variables using the spectraVariables() function.

spectraVariables(sps)
##  [1] "msLevel"                  "rtime"                   
##  [3] "acquisitionNum"           "scanIndex"               
##  [5] "dataStorage"              "dataOrigin"              
##  [7] "centroided"               "smoothed"                
##  [9] "polarity"                 "precScanNum"             
## [11] "precursorMz"              "precursorIntensity"      
## [13] "precursorCharge"          "collisionEnergy"         
## [15] "isolationWindowLowerMz"   "isolationWindowTargetMz" 
## [17] "isolationWindowUpperMz"   "peaksCount"              
## [19] "totIonCurrent"            "basePeakMZ"              
## [21] "basePeakIntensity"        "electronBeamEnergy"      
## [23] "ionisationEnergy"         "lowMZ"                   
## [25] "highMZ"                   "mergedScan"              
## [27] "mergedResultScanNum"      "mergedResultStartScanNum"
## [29] "mergedResultEndScanNum"   "injectionTime"           
## [31] "filterString"             "spectrumId"              
## [33] "ionMobilityDriftTime"     "scanWindowLowerLimit"    
## [35] "scanWindowUpperLimit"     "spectrum_id_"

The MS peak data can be accessed using either the mz(), intensity() or peaksData() functions. Below we extract the peaks matrix of the 5th spectrum and display the first 6 rows.

peaksData(sps)[[5]] |>
head()
##            mz intensity
## [1,] 105.0347         0
## [2,] 105.0362       164
## [3,] 105.0376         0
## [4,] 105.0391         0
## [5,] 105.0405       328
## [6,] 105.0420         0

All data (peaks data or spectra variables) are always retrieved on-the-fly from the database resulting thus in a minimal memory footprint for the Spectra object.

print(object.size(sps), units = "KB")
## 116.3 Kb

The backend supports also adding additional spectra variables or changing their values. Below we add 10 seconds to the retention time of each spectrum.

sps$rtime <- sps$rtime + 10

Such operations do however not change the data in the database (which is always considered read-only) but are cached locally within the backend object (in memory). The size in memory of the object is thus higher after changing that spectra variable.

print(object.size(sps), units = "KB")
## 131 Kb

Such $<- operations can also be used to cache spectra variables (temporarily) in memory which can eventually improve performance. Below we test the time it takes to extract the MS level from each spectrum from the database, then cache the MS levels in memory using $msLevel <- and test the timing to extract these cached variable.

system.time(msLevel(sps))
##    user  system elapsed 
##   0.009   0.000   0.008
sps$msLevel <- msLevel(sps)
system.time(msLevel(sps))
##    user  system elapsed 
##   0.005   0.000   0.004

We can also use the reset() function to reset the data to its original state (this will cause any local spectra variables to be deleted and the backend to be initialized with the original data in the database).

sps <- reset(sps)

Performance considerations

Database systems and data storage modes

The performance of storing and retrieving MS data from an MsBackendSql respectively SQL database can also depend on the type of database used as well as storage modes and the database layout used by MsBackendSql.

Database systems

Performance comparison have been made for small and large data sets using different SQL database systems and MsBackendSql has been optimized based on these results. For MariaDB database systems, for example, the Aria storage engine is used by default as it has considerable advantages over other MariaDB engines.

Performance of MariaDB and SQLite is comparable, even for very large data sets/databases. See this GitHub issue for performance comparison between MariaDB and SQLite.

Performance evaluation of SQLite and duckdb are provided in this GitHub issue. MsBackendSql long format database layout (see next section for details on available database layouts) with duckdb is clearly faster than with SQLite. For the blob2 database layout SQLite has advantages. Also, extracting individual spectra variables or filtering by e.g. retention time is slower for duckdb.

MsBackendSql database layouts/storage modes

MsBackendSql defines different database table layouts and hence ways to store the MS data. The most intuitive way to store MS data would be the long format (peaksStorageMode = "long") which saves the m/z and intensity values of each mass peak as a single row. While this would allow to filter e.g. the peaks data by m/z and/or intensity values already on the SQL level, it significantly increases the size of the database. This is in particular true for SQLite-based databases. The default storage mode (peaksStorageMode = "blob2") stores the complete peaks matrix (i.e. the two-column numerical matrix of m/z and intensity values) of spectrum as one entity to the database. This entry is stored as a binary data type (BLOB) in the database table (one row per spectrum). This has a positive impact on the performance of the database to extract peak data (which is much faster than from databases with the long peaks storage mode). In addition, also the size (disk space) of such databases are smaller. On the downside, these databases will only be readable and usable with MsBackendSql or R-based tools.

For MsBackendSql in the long peaks storage mode it is suggested to use duckdb as database backend.

Performance comparison with other backends

The need to retrieve any spectra data on-the-fly from the database has an impact on the performance of data access functions of Spectra objects using MsBackendSql/MsBackendOfflineSql backends. To evaluate this we compare below the performance of the MsBackendSql to other Spectra backends, specifically, the MsBackendMzR which is the default backend to read and represent raw MS data, and the MsBackendMemory backend that keeps all MS data in memory (and is thus not suggested for larger MS experiments). Similar to the MsBackendMzR, also the MsBackendSql keeps only a limited amount of data in memory. These on-disk backends need thus to retrieve spectra and MS peaks data on-the-fly from either the original raw data files (in the case of the MsBackendMzR) or from the SQL database (in the case of the MsBackendSql). The in-memory backend MsBackendMemory is supposed to provide the fastest data access since all data is kept in memory.

Below we thus create Spectra objects from the same data but using the different backends.

con <- dbConnect(SQLite(), dbfile)
sps <- Spectra(con, source = MsBackendSql())
sps_mzr <- Spectra(fls, source = MsBackendMzR())
sps_im <- setBackend(sps_mzr, backend = MsBackendMemory())

At first we compare the memory footprint of the 3 backends.

print(object.size(sps), units = "KB")
## 114.7 Kb
print(object.size(sps_mzr), units = "KB")
## 401.1 Kb
print(object.size(sps_im), units = "KB")
## 54509 Kb

The MsBackendSql has the lowest memory footprint of all 3 backends because it does not keep any data in memory. The MsBackendMzR keeps all spectra variables, except the MS peaks data, in memory and has thus a larger size. The MsBackendMemory keeps all data (including the MS peaks data) in memory and has thus the largest size in memory.

Next we compare the performance to extract the MS level for each spectrum from the 4 different Spectra objects.

library(microbenchmark)
microbenchmark(msLevel(sps),
               msLevel(sps_mzr),
               msLevel(sps_im))
## Unit: microseconds
##              expr      min        lq       mean   median        uq      max
##      msLevel(sps) 3708.578 3809.0925 4145.61433 3924.399 4478.9660 5641.935
##  msLevel(sps_mzr)  310.721  345.2065  441.34739  370.299  444.2585 5146.831
##   msLevel(sps_im)    8.242   11.2770   15.91792   16.920   19.7495   28.492
##  neval
##    100
##    100
##    100

Extracting MS levels is thus slowest for the MsBackendSql, which is not surprising because both other backends keep this data in memory while the MsBackendSql needs to retrieve it from the database.

We next compare the performance to access the full peaks data from each Spectra object.

microbenchmark(peaksData(sps, BPPARAM = SerialParam()),
               peaksData(sps_mzr, BPPARAM = SerialParam()),
               peaksData(sps_im, BPPARAM = SerialParam()),
               times = 10)
## Unit: microseconds
##                                         expr        min         lq       mean
##      peaksData(sps, BPPARAM = SerialParam())  34471.791  40220.495 182787.927
##  peaksData(sps_mzr, BPPARAM = SerialParam()) 332376.769 338862.134 343837.777
##   peaksData(sps_im, BPPARAM = SerialParam())    247.497    257.382   1453.091
##       median         uq        max neval
##   43617.0305 396069.035 403782.210    10
##  342733.8805 345625.463 363187.230    10
##     598.9485    816.591   9771.067    10

As expected, the MsBackendMemory has the fasted access to the full peaks data. The MsBackendSql outperforms however the MsBackendMzR providing faster access to the m/z and intensity values.

Performance can be improved for the MsBackendMzR using parallel processing. Note that the MsBackendSql does not support parallel processing and thus parallel processing is (silently) disabled in functions such as peaksData().

m2 <- MulticoreParam(2)
microbenchmark(peaksData(sps, BPPARAM = m2),
               peaksData(sps_mzr, BPPARAM = m2),
               peaksData(sps_im, BPPARAM = m2),
               times = 10)
## Unit: microseconds
##                              expr        min        lq        mean     median
##      peaksData(sps, BPPARAM = m2)  35534.587  43370.32 176653.4287  50044.705
##  peaksData(sps_mzr, BPPARAM = m2) 367679.792 374668.83 588262.3202 389334.343
##   peaksData(sps_im, BPPARAM = m2)    284.041    815.90    800.6682    892.498
##           uq        max neval
##   404862.221  518030.28    10
##  1059307.064 1077095.15    10
##      950.039    1099.43    10

We next compare the performance of subsetting operations.

microbenchmark(filterRt(sps, rt = c(50, 100)),
               filterRt(sps_mzr, rt = c(50, 100)),
               filterRt(sps_im, rt = c(50, 100)))
## Unit: microseconds
##                                expr      min       lq      mean   median
##      filterRt(sps, rt = c(50, 100)) 1339.636 1399.905 1562.9530 1439.669
##  filterRt(sps_mzr, rt = c(50, 100)) 1019.812 1084.418 1246.1058 1124.367
##   filterRt(sps_im, rt = c(50, 100))  304.762  345.613  377.1254  370.359
##        uq       max neval
##  1488.647 10610.061   100
##  1327.468  6665.052   100
##   405.647   613.940   100

The two on-disk backends MsBackendSql and MsBackendMzR show a comparable performance for this operation. This filtering does involves access to a spectra variables (the retention time in this case) which, for the MsBackendSql needs first to be retrieved from the backend. The MsBackendSql backend allows however also to cache spectra variables (i.e. they are stored within the MsBackendSql object). Any access to such cached spectra variables can eventually be faster because no dedicated SQL query is needed.

To evaluate the performance of a pure subsetting operation we first define the indices of 10 random spectra and subset the Spectra objects to these.

idx <- sample(seq_along(sps), 10)
microbenchmark(sps[idx],
               sps_mzr[idx],
               sps_im[idx])
## Unit: microseconds
##          expr     min       lq     mean   median       uq      max neval
##      sps[idx]  85.997  92.6875 101.3122 100.9595 106.4330  163.793   100
##  sps_mzr[idx] 472.690 491.8340 516.0876 499.1755 509.3955 1834.430   100
##   sps_im[idx] 173.007 178.8950 186.4971 184.1830 190.4425  248.499   100

Here the MsBackendSql outperforms the other backends because it does not keep any data in memory and hence does not need to subset these. The two other backends need to subset the data they keep in memory which is in both cases a data frame with either a reduced set of spectra variables or the full MS data.

At last we compare also the extraction of the peaks data from the such subset Spectra objects.

sps_10 <- sps[idx]
sps_mzr_10 <- sps_mzr[idx]
sps_im_10 <- sps_im[idx]

microbenchmark(peaksData(sps_10),
               peaksData(sps_mzr_10),
               peaksData(sps_im_10),
               times = 10)
## Unit: microseconds
##                   expr       min        lq      mean    median        uq
##      peaksData(sps_10)  1984.522  2099.113  3269.829  3666.176  3753.705
##  peaksData(sps_mzr_10) 47165.652 47521.619 48301.951 48309.883 48784.922
##   peaksData(sps_im_10)   338.812   465.250   513.227   484.318   673.609
##        max neval
##   4357.691    10
##  49856.942    10
##    684.355    10

The MsBackendSql outperforms the MsBackendMzR while, not unexpectedly, the MsBackendMemory provides fasted access.

Considerations for database systems/servers

The backends from the MsBackendSql package use standard SQL calls to retrieve MS data from the database and hence any SQL database system (for which an R package is available) is supported. SQLite-based databases would represent the easiest and most user friendly solution since no database server administration and user management is required. Indeed, performance of SQLite is very high, even for very large data sets. Server-based databases on the other hand have the advantage to enable a centralized storage and control of MS data (inclusive user management etc). Also, such server systems would also allow data set or server-specific configurations to improve performance.

A comparison between a SQLite-based with a MariaDB-based MsBackendSql database for a large data set comprising over 8,000 samples and over 15,000,000 spectra is available here. In brief, performance to extract data was comparable and for individual spectra variables even faster for the SQLite database. Only when more complex SQL queries were involved (combining several primary keys or data fields) the more advanced MariaDB database outperformed SQLite.

Other properties of the MsBackendSql

The MsBackendSql backend does not support parallel processing since the database connection can not be shared across the different (parallel) processes. Thus, all methods on Spectra objects that use a MsBackendSql will automatically (and silently) disable parallel processing even if a dedicated parallel processing setup was passed along with the BPPARAM method.

Some functions on Spectra objects require to load the MS peak data (i.e., m/z and intensity values) into memory. For very large data sets (or computers with limited hardware resources) such function calls can cause out-of-memory errors. One example is the lengths() function that determines the number of peaks per spectrum by loading the peak matrix first into memory. Such functions should ideally be called using the peaksapply() function with parameter chunkSize (e.g., peaksapply(sps, lengths, chunkSize = 5000L)). Instead of processing the full data set, the data will be first split into chunks of size chunkSize that are stepwise processed. Hence, only data from chunkSize spectra is loaded into memory in one iteration.

Summary

The MsBackendSql provides an MS data representations and storage mode with a minimal memory footprint (in R) that is still comparably efficient for standard processing and subsetting operations. This backend is specifically useful for very large MS data sets, that could even be hosted on remote (MySQL/MariaDB) servers. A potential use case for this backend could thus be to set up a central storage place for MS experiments with data analysts connecting remotely to this server to perform initial data exploration and filtering. After subsetting to a smaller data set of interest, users could then retrieve/download this data by changing the backend to e.g. a MsBackendMemory, which would result in a download of the full data to the user computer’s memory.

Session information

sessionInfo()
## R version 4.6.0 (2026-04-24)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 24.04.4 LTS
## 
## Matrix products: default
## BLAS:   /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 
## LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.26.so;  LAPACK version 3.12.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: Etc/UTC
## tzcode source: system (glibc)
## 
## attached base packages:
## [1] stats4    stats     graphics  grDevices utils     datasets  methods  
## [8] base     
## 
## other attached packages:
##  [1] microbenchmark_1.5.0 MsDataHub_1.13.0     RSQLite_2.4.6       
##  [4] MsBackendSql_1.13.0  Spectra_1.23.0       BiocParallel_1.47.0 
##  [7] S4Vectors_0.51.1     BiocGenerics_0.59.0  generics_0.1.4      
## [10] BiocStyle_2.41.0    
## 
## loaded via a namespace (and not attached):
##  [1] KEGGREST_1.53.0        fastmatch_1.1-8        xfun_0.57             
##  [4] bslib_0.10.0           httr2_1.2.2            Biobase_2.73.1        
##  [7] vctrs_0.7.3            tools_4.6.0            curl_7.1.0            
## [10] parallel_4.6.0         AnnotationDbi_1.75.0   tibble_3.3.1          
## [13] cluster_2.1.8.2        blob_1.3.0             pkgconfig_2.0.3       
## [16] data.table_1.18.2.1    dbplyr_2.5.2           lifecycle_1.0.5       
## [19] compiler_4.6.0         Biostrings_2.81.1      progress_1.2.3        
## [22] Seqinfo_1.3.0          codetools_0.2-20       ncdf4_1.24            
## [25] clue_0.3-68            htmltools_0.5.9        sys_3.4.3             
## [28] buildtools_1.0.0       sass_0.4.10            yaml_2.3.12           
## [31] pillar_1.11.1          crayon_1.5.3           jquerylib_0.1.4       
## [34] MASS_7.3-65            cachem_1.1.0           MetaboCoreUtils_1.21.1
## [37] ExperimentHub_3.3.0    AnnotationHub_4.1.0    tidyselect_1.2.1      
## [40] digest_0.6.39          stringi_1.8.7          purrr_1.2.2           
## [43] dplyr_1.2.1            BiocVersion_3.24.0     maketools_1.3.2       
## [46] fastmap_1.2.0          cli_3.6.6              magrittr_2.0.5        
## [49] withr_3.0.2            filelock_1.0.3         prettyunits_1.2.0     
## [52] rappdirs_0.3.4         bit64_4.8.0            XVector_0.53.0        
## [55] httr_1.4.8             rmarkdown_2.31         bit_4.6.0             
## [58] png_0.1-9              hms_1.1.4              memoise_2.0.1         
## [61] evaluate_1.0.5         knitr_1.51             IRanges_2.47.0        
## [64] BiocFileCache_3.3.0    rlang_1.2.0            Rcpp_1.1.1-1.1        
## [67] glue_1.8.1             DBI_1.3.0              mzR_2.47.0            
## [70] BiocManager_1.30.27    jsonlite_2.0.0         R6_2.6.1              
## [73] fs_2.1.0               ProtGenerics_1.45.0    MsCoreUtils_1.25.3