Contents

1 Introduction

BERT (Batch-Effect Removal with Trees) offers flexible and efficient batch effect correction of omics data, while providing maximum tolerance to missing values. Tested on multiple datasets from proteomic analyses, BERT offered a typical 5-10x runtime improvement over existing methods, while retaining more numeric values and preserving batch effect reduction quality.

As such, BERT is a valuable preprocessing tool for data analysis workflows, in particular for proteomic data. By providing BERT via Bioconductor, we make this tool available to a wider research community. An accompanying research paper is currently under preparation and will be made public soon.

BERT addresses the same fundamental data integration challenges than the [HarmonizR][https://github.com/HSU-HPC/HarmonizR] package, which is released on Bioconductor in November 2023. However, various algorithmic modications and optimizations of BERT provide better execution time and better data coverage than HarmonizR. Moreover, BERT offers a more user-friendly design and a less error-prone input format.

Please note that our package BERT is neither affiliated with nor related to Bidirectional Encoder Representations from Transformers as published by Google.

Please report any questions and issues in the GitHub forum, the BioConductor forum or directly contact the authors,

2 Installation

Please download and install a current version of R (Windows binaries). You might want to consider installing a development environment as well, e.g. RStudio. Finally, BERT can be installed via Bioconductor using

if (!require("BiocManager", quietly = TRUE)){
    install.packages("BiocManager")
}
BiocManager::install("BERT")

which will install all required dependencies. To install the development version of BERT, you can use devtools as follows

devtools::install_github("HSU-HPC/BERT")

which may require the manual installation of the dependencies sva and limma.

if (!require("BiocManager", quietly = TRUE)){
    install.packages("BiocManager")
}
BiocManager::install("sva")
BiocManager::install("limma")

3 Data Preparation

As input, BERT requires a dataframe1 Matrices and SummarizedExperiments work as well, but will automatically be converted to dataframes. with samples in rows and features in columns. For each sample, the respective batch should be indicated by an integer or string in a corresponding column labelled Batch. Missing values should be labelled as NA. A valid example dataframe could look like this:

example = data.frame(feature_1 = stats::rnorm(5), feature_2 = stats::rnorm(5), Batch=c(1,1,2,2,2))
example
#>     feature_1  feature_2 Batch
#> 1  0.09644247 -2.0978175     1
#> 2 -0.10589177  0.2132046     1
#> 3  0.32901929 -0.2940147     2
#> 4  0.47418840 -1.6456729     2
#> 5  1.02527522  0.9266133     2

Note that each batch should contain at least two samples. Optional columns that can be passed are

Note that BERT tries to find all metadata information for a SummarizedExperiment, including the mandatory batch information, using colData. For instance, a valid SummarizedExperiment might be defined as

nrows <- 200
ncols <- 8
expr_values <- matrix(runif(nrows * ncols, 1, 1e4), nrows)
# colData also takes all other metadata information, such as Label, Sample,
# Covariables etc.
colData <- data.frame(Batch=c(1,1,1,1,2,2,2,2), Reference=c(1,1,0,0,1,1,0,0))
dataset_raw = SummarizedExperiment::SummarizedExperiment(assays=list(expr=expr_values), colData=colData)

4 Basic Usage

BERT can be invoked by importing the BERT library and calling the BERT function. The batch effect corrected data is returned as a dataframe that mirrors the input dataframe2 In particular, the row and column names are in the same order and the optional columns are preserved..

library(BERT)
# generate test data with 10% missing values as provided by the BERT library
dataset_raw <- generate_dataset(features=60, batches=10, samplesperbatch=10, mvstmt=0.1, classes=2)
# apply BERT
dataset_adjusted <- BERT(dataset_raw)
#> 2025-11-13 15:47:13.076739 INFO::Formatting Data.
#> 2025-11-13 15:47:13.081089 INFO::Replacing NaNs with NAs.
#> 2025-11-13 15:47:13.084703 INFO::Removing potential empty rows and columns
#> 2025-11-13 15:47:13.19366 INFO::Found  600  missing values.
#> 2025-11-13 15:47:13.197564 INFO::Introduced 0 missing values due to singular proteins at batch/covariate level.
#> 2025-11-13 15:47:13.197796 INFO::Done
#> 2025-11-13 15:47:13.197962 INFO::Acquiring quality metrics before batch effect correction.
#> 2025-11-13 15:47:13.203206 INFO::Starting hierarchical adjustment
#> 2025-11-13 15:47:13.203524 INFO::Found  10  batches.
#> 2025-11-13 15:47:13.203693 INFO::Cores argument is not defined or BPPARAM has been specified. Argument corereduction will not be used.
#> 2025-11-13 15:47:14.17586 INFO::Using default BPPARAM
#> 2025-11-13 15:47:14.176168 INFO::Processing subtree level 1
#> 2025-11-13 15:47:14.955495 INFO::Processing subtree level 2
#> 2025-11-13 15:47:15.733146 INFO::Adjusting the last 1 batches sequentially
#> 2025-11-13 15:47:15.743184 INFO::Done
#> 2025-11-13 15:47:15.743633 INFO::Acquiring quality metrics after batch effect correction.
#> 2025-11-13 15:47:15.746796 INFO::ASW Batch was 0.480143983617543 prior to batch effect correction and is now -0.120599359447634 .
#> 2025-11-13 15:47:15.74731 INFO::ASW Label was 0.311552715099673 prior to batch effect correction and is now 0.833346349672223 .
#> 2025-11-13 15:47:15.748374 INFO::Total function execution time is  2.68491721153259  s and adjustment time is  2.53972005844116 s ( 94.59 )

BERT uses the logging library to convey live information to the user during the adjustment procedure. The algorithm first verifies the shape and suitability of the input dataframe (lines 1-6) before continuing with the actual batch effect correction (lines 8-14). BERT measure batch effects before and after the correction step by means of the average silhouette score (ASW) with respect to batch and labels (lines 7 and 15). The ASW Label should increase in a successful batch effect correction, whereas low values (\(\leq 0\)) are desireable for the ASW Batch3 The optimum of ASW Label is 1, which is typically however not achieved on real-world datasets. Also, the optimum of ASW Batch can vary, depending on the class distributions of the batches.. Finally, BERT prints the total function execution time (including the computation time for the quality metrics).

5 Advanced Options

5.1 Parameters

BERT offers a large number of parameters to customize the batch effect adjustment. The full function call, including all defaults is

BERT(data, cores = NULL, combatmode = 1, corereduction=2, stopParBatches=2, backend="default", method="ComBat", qualitycontrol=TRUE, verify=TRUE, labelname="Label", batchname="Batch", referencename="Reference", samplename="Sample", covariatename=NULL, BPPARAM=NULL, assayname=NULL)

In the following, we list the respective meaning of each parameter: - data: The input dataframe/matrix/SummarizedExperiment to adjust. See Data Preparation for detailed formatting instructions. - data The data for batch-effect correction. Must contain at least two samples per batch and 2 features.

  • cores: BERT uses BiocParallel for parallelization. If the user specifies a value cores, BERT internally creates and uses a new instance of BiocParallelParam, which is however not exhibited to the user. Setting this parameter can speed up the batch effect adjustment considerably, in particular for large datasets and on unix-based operating systems. A value between \(2\) and \(4\) is a reasonable choice for typical commodity hardware. Multi-node computations are not supported as of now. If, however, cores is not specified, BERT will default to BiocParallel::bpparam(), which may have been set by the user or the system. Additionally, the user can directly specify a specific instance of BiocParallelParam to be used via the BPPARAM argument.
  • combatmode An integer that encodes the parameters to use for ComBat.
Value par.prior mean.only
1 TRUE FALSE
2 TRUE TRUE
3 FALSE FALSE
4 FALSE TRUE

The value of this parameter will be ignored, if method!="ComBat".

  • corereduction Positive integer indicating the factor by which the number of processes should be reduced, once no further adjustment is possible for the current number of batches.4 E.g. consider a BERT call with 8 batches and 8 processes. Further adjustment is not possible with this number of processes, since batches are always processed in pairs. With corereduction=2, the number of processes for the following adjustment steps would be set to \(8/2=4\), which is the maximum number of usable processes for this example. This parameter is used only, if the user specified a custom value for parameter cores.

  • stopParBatches Positive integer indicating the minimum number of batches required at a hierarchy level to proceed with parallelized adjustment. If the number of batches is smaller, adjustment will be performed sequentially to avoid communication overheads.

  • backend: The backend to use for inter-process communication. Possible choices are default and file, where the former refers to the default communication backend of the requested parallelization mode and the latter will create temporary .rds files for data communication. ‘default’ is usually faster for small to medium sized datasets.

  • method: The method to use for the underlying batch effect correction steps. Should be either ComBat, limma for limma::removeBatchEffects or ref for adjustment using specified references (cf. Data Preparation). The underlying batch effect adjustment method for ref is a modified version of the limma method.

  • qualitycontrol: A boolean to (de)activate the ASW computation. Deactivating the ASW computations accelerates the computations.

  • verify: A boolean to (de)activate the initial format check of the input data. Deactivating this verification step accelerates the computations.

  • labelname: A string containing the name of the column to use as class labels. The default is “Label”.

  • batchname: A string containing the name of the column to use as batch labels. The default is “Batch”.

  • referencename: A string containing the name of the column to use as reference labels. The default is “Reference”.

  • covariatename: A vector containing the names of columns with categorical covariables.The default is NULL, in which case all column names are matched agains the pattern “Cov”.

  • BPPARAM: An instance of BiocParallelParam that will be used for parallelization. The default is null, in which case the value of cores determines the behaviour of BERT.

  • assayname: If the user chooses to pass a SummarizedExperiment object, they need to specify the name of the assay that they want to apply BERT to here. BERT then returns the input SummarizedExperiment with an additional assay labeled assayname_BERTcorrected.

5.2 Verbosity

BERT utilizes the logging package for output. The user can easily specify the verbosity of BERT by setting the global logging level in the script. For instance

logging::setLevel("WARN") # set level to warn and upwards
result <- BERT(data,cores = 1) # BERT executes silently

5.3 Choosing the Optimal Number of Cores

BERT exhibits a large number of parameters for parallelisation as to provide users with maximum flexibility. For typical scenarios, however, the default parameters are well suited. For very large experiments (\(>15\) batches), we recommend to increase the number of cores (a reasonable value is \(4\) but larger values may be possible on your hardware). Most users should leave all parameters to their respective default.

6 Examples

In the following, we present simple cookbook examples for BERT usage. Note that ASWs (and runtime) will most likely differ on your machine, since the data generating process involves multiple random choices.

6.1 Sequential Adjustment with limma

Here, BERT uses limma as underlying batch effect correction algorithm (method='limma') and performs all computations on a single process (cores parameter is left on default).

# import BERT
library(BERT)
# generate data with 30 batches, 60 features, 15 samples per batch, 15% missing values and 2 classes
dataset_raw <- generate_dataset(features=60, batches=20, samplesperbatch=15, mvstmt=0.15, classes=2)
# BERT
dataset_adjusted <- BERT(dataset_raw, method="limma")
#> 2025-11-13 15:47:15.823255 INFO::Formatting Data.
#> 2025-11-13 15:47:15.823907 INFO::Replacing NaNs with NAs.
#> 2025-11-13 15:47:15.824707 INFO::Removing potential empty rows and columns
#> 2025-11-13 15:47:15.826339 INFO::Found  2700  missing values.
#> 2025-11-13 15:47:15.837521 INFO::Introduced 0 missing values due to singular proteins at batch/covariate level.
#> 2025-11-13 15:47:15.837822 INFO::Done
#> 2025-11-13 15:47:15.838035 INFO::Acquiring quality metrics before batch effect correction.
#> 2025-11-13 15:47:15.843361 INFO::Starting hierarchical adjustment
#> 2025-11-13 15:47:15.843684 INFO::Found  20  batches.
#> 2025-11-13 15:47:15.843878 INFO::Cores argument is not defined or BPPARAM has been specified. Argument corereduction will not be used.
#> 2025-11-13 15:47:15.844182 INFO::Using default BPPARAM
#> 2025-11-13 15:47:15.844357 INFO::Processing subtree level 1
#> 2025-11-13 15:47:16.057724 INFO::Processing subtree level 2
#> 2025-11-13 15:47:16.231942 INFO::Processing subtree level 3
#> 2025-11-13 15:47:16.415008 INFO::Adjusting the last 1 batches sequentially
#> 2025-11-13 15:47:16.417288 INFO::Done
#> 2025-11-13 15:47:16.417542 INFO::Acquiring quality metrics after batch effect correction.
#> 2025-11-13 15:47:16.424603 INFO::ASW Batch was 0.434439699347397 prior to batch effect correction and is now -0.11050461038962 .
#> 2025-11-13 15:47:16.424971 INFO::ASW Label was 0.322913065162845 prior to batch effect correction and is now 0.857289104199876 .
#> 2025-11-13 15:47:16.425957 INFO::Total function execution time is  0.602779150009155  s and adjustment time is  0.573657035827637 s ( 95.17 )

6.2 Parallel Batch Effect Correction with ComBat

Here, BERT uses ComBat as underlying batch effect correction algorithm (method is left on default) and performs all computations on a 2 processes (cores=2).

# import BERT
library(BERT)
# generate data with 30 batches, 60 features, 15 samples per batch, 15% missing values and 2 classes
dataset_raw <- generate_dataset(features=60, batches=20, samplesperbatch=15, mvstmt=0.15, classes=2)
# BERT
dataset_adjusted <- BERT(dataset_raw, cores=2)
#> 2025-11-13 15:47:16.461547 INFO::Formatting Data.
#> 2025-11-13 15:47:16.461904 INFO::Replacing NaNs with NAs.
#> 2025-11-13 15:47:16.462402 INFO::Removing potential empty rows and columns
#> 2025-11-13 15:47:16.46334 INFO::Found  2700  missing values.
#> 2025-11-13 15:47:16.473518 INFO::Introduced 0 missing values due to singular proteins at batch/covariate level.
#> 2025-11-13 15:47:16.473774 INFO::Done
#> 2025-11-13 15:47:16.47399 INFO::Acquiring quality metrics before batch effect correction.
#> 2025-11-13 15:47:16.479823 INFO::Starting hierarchical adjustment
#> 2025-11-13 15:47:16.480161 INFO::Found  20  batches.
#> 2025-11-13 15:47:16.769494 INFO::Set up parallel execution backend with 2 workers
#> 2025-11-13 15:47:16.769886 INFO::Processing subtree level 1 with 20 batches using 2 cores.
#> 2025-11-13 15:47:17.955954 INFO::Adjusting the last 2 batches sequentially
#> 2025-11-13 15:47:17.956561 INFO::Adjusting sequential tree level 1 with 2 batches
#> 2025-11-13 15:47:18.569986 INFO::Done
#> 2025-11-13 15:47:18.570258 INFO::Acquiring quality metrics after batch effect correction.
#> 2025-11-13 15:47:18.5749 INFO::ASW Batch was 0.556419888602501 prior to batch effect correction and is now -0.155791275005313 .
#> 2025-11-13 15:47:18.575121 INFO::ASW Label was 0.214718251942348 prior to batch effect correction and is now 0.825823324989663 .
#> 2025-11-13 15:47:18.575362 INFO::Total function execution time is  2.11387801170349  s and adjustment time is  2.08976697921753 s ( 98.86 )

6.3 Batch Effect Correction Using SummarizedExperiment

Here, BERT takes the input data using a SummarizedExperiment instead. Batch effect correction is then performed using ComBat as underlying algorithm (method is left on default) and all computations are performed on a single process (cores parameter is left on default).

nrows <- 200
ncols <- 8
# SummarizedExperiments store samples in columns and features in rows (in contrast to BERT).
# BERT will automatically account for this.
expr_values <- matrix(runif(nrows * ncols, 1, 1e4), nrows)
# colData also takes further metadata information, such as Label, Sample,
# Reference or Covariables
colData <- data.frame("Batch"=c(1,1,1,1,2,2,2,2), "Label"=c(1,2,1,2,1,2,1,2), "Sample"=c(1,2,3,4,5,6,7,8))
dataset_raw = SummarizedExperiment::SummarizedExperiment(assays=list(expr=expr_values), colData=colData)
dataset_adjusted = BERT(dataset_raw, assayname = "expr")
#> 2025-11-13 15:47:18.612098 INFO::Formatting Data.
#> 2025-11-13 15:47:18.61238 INFO::Recognized SummarizedExperiment
#> 2025-11-13 15:47:18.612545 INFO::Typecasting input to dataframe.
#> 2025-11-13 15:47:18.624167 INFO::Replacing NaNs with NAs.
#> 2025-11-13 15:47:18.624546 INFO::Removing potential empty rows and columns
#> 2025-11-13 15:47:18.625557 INFO::Found  0  missing values.
#> 2025-11-13 15:47:18.627443 INFO::Introduced 0 missing values due to singular proteins at batch/covariate level.
#> 2025-11-13 15:47:18.627614 INFO::Done
#> 2025-11-13 15:47:18.627763 INFO::Acquiring quality metrics before batch effect correction.
#> 2025-11-13 15:47:18.629076 INFO::Starting hierarchical adjustment
#> 2025-11-13 15:47:18.629287 INFO::Found  2  batches.
#> 2025-11-13 15:47:18.629435 INFO::Cores argument is not defined or BPPARAM has been specified. Argument corereduction will not be used.
#> 2025-11-13 15:47:18.629605 INFO::Using default BPPARAM
#> 2025-11-13 15:47:18.629742 INFO::Adjusting the last 2 batches sequentially
#> 2025-11-13 15:47:18.630006 INFO::Adjusting sequential tree level 1 with 2 batches
#> 2025-11-13 15:47:18.645468 INFO::Done
#> 2025-11-13 15:47:18.645727 INFO::Acquiring quality metrics after batch effect correction.
#> 2025-11-13 15:47:18.647077 INFO::ASW Batch was -0.0119247835647515 prior to batch effect correction and is now -0.0884862724242022 .
#> 2025-11-13 15:47:18.647261 INFO::ASW Label was 0.000469173772663817 prior to batch effect correction and is now 0.0130107874779453 .
#> 2025-11-13 15:47:18.647508 INFO::Total function execution time is  0.0354158878326416  s and adjustment time is  0.0162088871002197 s ( 45.77 )

6.4 BERT with Covariables

BERT can utilize categorical covariables that are specified in columns Cov_1, Cov_2, .... These columns are automatically detected and integrated into the batch effect correction process.

# import BERT
library(BERT)
# set seed for reproducibility
set.seed(1)
# generate data with 5 batches, 60 features, 30 samples per batch, 15% missing values and 2 classes
dataset_raw <- generate_dataset(features=60, batches=5, samplesperbatch=30, mvstmt=0.15, classes=2)
# create covariable column with 2 possible values, e.g. male/female condition
dataset_raw["Cov_1"] = sample(c(1,2), size=dim(dataset_raw)[1], replace=TRUE)
# BERT
dataset_adjusted <- BERT(dataset_raw)
#> 2025-11-13 15:47:18.677563 INFO::Formatting Data.
#> 2025-11-13 15:47:18.67787 INFO::Replacing NaNs with NAs.
#> 2025-11-13 15:47:18.678194 INFO::Removing potential empty rows and columns
#> 2025-11-13 15:47:18.678778 INFO::Found  1350  missing values.
#> 2025-11-13 15:47:18.679045 INFO::BERT requires at least 2 numeric values per batch/covariate level. This may reduce the number of adjustable features considerably, depending on the quantification technique.
#> 2025-11-13 15:47:18.690172 INFO::Introduced 0 missing values due to singular proteins at batch/covariate level.
#> 2025-11-13 15:47:18.690405 INFO::Done
#> 2025-11-13 15:47:18.690576 INFO::Acquiring quality metrics before batch effect correction.
#> 2025-11-13 15:47:18.692395 INFO::Starting hierarchical adjustment
#> 2025-11-13 15:47:18.692609 INFO::Found  5  batches.
#> 2025-11-13 15:47:18.692756 INFO::Cores argument is not defined or BPPARAM has been specified. Argument corereduction will not be used.
#> 2025-11-13 15:47:18.692923 INFO::Using default BPPARAM
#> 2025-11-13 15:47:18.693066 INFO::Processing subtree level 1
#> 2025-11-13 15:47:18.784802 INFO::Adjusting the last 2 batches sequentially
#> 2025-11-13 15:47:18.78775 INFO::Adjusting sequential tree level 1 with 2 batches
#> 2025-11-13 15:47:18.813982 INFO::Done
#> 2025-11-13 15:47:18.814275 INFO::Acquiring quality metrics after batch effect correction.
#> 2025-11-13 15:47:18.816858 INFO::ASW Batch was 0.492773245691086 prior to batch effect correction and is now -0.0377157224767565 .
#> 2025-11-13 15:47:18.817125 INFO::ASW Label was 0.40854766060101 prior to batch effect correction and is now 0.895560693013661 .
#> 2025-11-13 15:47:18.817706 INFO::Total function execution time is  0.140159130096436  s and adjustment time is  0.121392965316772 s ( 86.61 )

6.5 BERT with references

In rare cases, class distributions across experiments may be severely skewed. In particular, a batch might contain classes that other batches don’t contain. In these cases, samples of common conditions may serve as references (bridges) between the batches (method="ref"). BERT utilizes those samples as references that have a condition specified in the “Reference” column of the input. All other samples are co-adjusted. Please note, that this strategy implicitly uses limma as underlying batch effect correction algorithm.

# import BERT
library(BERT)
# generate data with 4 batches, 6 features, 15 samples per batch, 15% missing values and 2 classes
dataset_raw <- generate_dataset(features=6, batches=4, samplesperbatch=15, mvstmt=0.15, classes=2)
# create reference column with default value 0.  The 0 indicates, that the respective sample should be co-adjusted only.
dataset_raw[, "Reference"] <- 0
# randomly select 2 references per batch and class - in practice, this choice will be determined by external requirements (e.g. class known for only these samples)
batches <- unique(dataset_raw$Batch) # all the batches
for(b in batches){ # iterate over all batches
    # references from class 1
    ref_idx = sample(which((dataset_raw$Batch==b)&(dataset_raw$Label==1)), size=2, replace=FALSE)
    dataset_raw[ref_idx, "Reference"] <- 1
    # references from class 2
    ref_idx = sample(which((dataset_raw$Batch==b)&(dataset_raw$Label==2)), size=2, replace=FALSE)
    dataset_raw[ref_idx, "Reference"] <- 2
}
# BERT
dataset_adjusted <- BERT(dataset_raw, method="ref")
#> 2025-11-13 15:47:18.866722 INFO::Formatting Data.
#> 2025-11-13 15:47:18.867103 INFO::Replacing NaNs with NAs.
#> 2025-11-13 15:47:18.8675 INFO::Removing potential empty rows and columns
#> 2025-11-13 15:47:18.867918 INFO::Found  60  missing values.
#> 2025-11-13 15:47:18.86945 INFO::Introduced 0 missing values due to singular proteins at batch/covariate level.
#> 2025-11-13 15:47:18.869679 INFO::Done
#> 2025-11-13 15:47:18.869882 INFO::Acquiring quality metrics before batch effect correction.
#> 2025-11-13 15:47:18.871137 INFO::Starting hierarchical adjustment
#> 2025-11-13 15:47:18.871413 INFO::Found  4  batches.
#> 2025-11-13 15:47:18.871601 INFO::Cores argument is not defined or BPPARAM has been specified. Argument corereduction will not be used.
#> 2025-11-13 15:47:18.871829 INFO::Using default BPPARAM
#> 2025-11-13 15:47:18.872014 INFO::Processing subtree level 1
#> 2025-11-13 15:47:18.94038 INFO::Adjusting the last 2 batches sequentially
#> 2025-11-13 15:47:18.945419 INFO::Adjusting sequential tree level 1 with 2 batches
#> 2025-11-13 15:47:18.961655 INFO::Done
#> 2025-11-13 15:47:18.962181 INFO::Acquiring quality metrics after batch effect correction.
#> 2025-11-13 15:47:18.963848 INFO::ASW Batch was 0.440355021914032 prior to batch effect correction and is now -0.087480278736629 .
#> 2025-11-13 15:47:18.964133 INFO::ASW Label was 0.373906827748893 prior to batch effect correction and is now 0.919791677398366 .
#> 2025-11-13 15:47:18.964743 INFO::Total function execution time is  0.0980708599090576  s and adjustment time is  0.0902860164642334 s ( 92.06 )

7 Issues

Issues can be reported in the GitHub forum, the BioConductor forum or directly to the authors.

8 License

This code is published under the GPLv3.0 License and is available for non-commercial academic purposes.

9 Reference

Please cite our manuscript, if you use BERT for your research: Schumann Y, Gocke A, Neumann J (2024). Computational Methods for Data Integration and Imputation of Missing Values in Omics Datasets. PROTEOMICS. ISSN 1615-9861, doi:10.1002/pmic.202400100

10 Session Info

sessionInfo()
#> R Under development (unstable) (2025-11-04 r88984)
#> Platform: aarch64-apple-darwin20
#> Running under: macOS Ventura 13.7.8
#> 
#> Matrix products: default
#> BLAS:   /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 
#> LAPACK: /Library/Frameworks/R.framework/Versions/4.6-arm64/Resources/lib/libRlapack.dylib;  LAPACK version 3.12.1
#> 
#> locale:
#> [1] C/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
#> 
#> time zone: America/New_York
#> tzcode source: internal
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] BERT_1.7.0       BiocStyle_2.39.0
#> 
#> loaded via a namespace (and not attached):
#>  [1] KEGGREST_1.51.0             SummarizedExperiment_1.41.0
#>  [3] xfun_0.54                   bslib_0.9.0                
#>  [5] Biobase_2.71.0              lattice_0.22-7             
#>  [7] vctrs_0.6.5                 tools_4.6.0                
#>  [9] generics_0.1.4              stats4_4.6.0               
#> [11] parallel_4.6.0              AnnotationDbi_1.73.0       
#> [13] RSQLite_2.4.4               cluster_2.1.8.1            
#> [15] blob_1.2.4                  logging_0.10-108           
#> [17] Matrix_1.7-4                S4Vectors_0.49.0           
#> [19] lifecycle_1.0.4             compiler_4.6.0             
#> [21] stringr_1.6.0               Biostrings_2.79.2          
#> [23] statmod_1.5.1               janitor_2.2.1              
#> [25] Seqinfo_1.1.0               codetools_0.2-20           
#> [27] snakecase_0.11.1            htmltools_0.5.8.1          
#> [29] sass_0.4.10                 yaml_2.3.10                
#> [31] crayon_1.5.3                jquerylib_0.1.4            
#> [33] comprehenr_0.6.10           BiocParallel_1.45.0        
#> [35] limma_3.67.0                DelayedArray_0.37.0        
#> [37] cachem_1.1.0                iterators_1.0.14           
#> [39] abind_1.4-8                 foreach_1.5.2              
#> [41] nlme_3.1-168                sva_3.59.0                 
#> [43] genefilter_1.93.0           locfit_1.5-9.12            
#> [45] tidyselect_1.2.1            digest_0.6.38              
#> [47] stringi_1.8.7               bookdown_0.45              
#> [49] splines_4.6.0               fastmap_1.2.0              
#> [51] grid_4.6.0                  cli_3.6.5                  
#> [53] invgamma_1.2                SparseArray_1.11.1         
#> [55] magrittr_2.0.4              S4Arrays_1.11.0            
#> [57] survival_3.8-3              XML_3.99-0.20              
#> [59] edgeR_4.9.0                 bit64_4.6.0-1              
#> [61] lubridate_1.9.4             timechange_0.3.0           
#> [63] rmarkdown_2.30              XVector_0.51.0             
#> [65] httr_1.4.7                  matrixStats_1.5.0          
#> [67] bit_4.6.0                   png_0.1-8                  
#> [69] memoise_2.0.1               evaluate_1.0.5             
#> [71] knitr_1.50                  GenomicRanges_1.63.0       
#> [73] IRanges_2.45.0              mgcv_1.9-4                 
#> [75] rlang_1.1.6                 xtable_1.8-4               
#> [77] glue_1.8.0                  DBI_1.2.3                  
#> [79] BiocManager_1.30.26         BiocGenerics_0.57.0        
#> [81] annotate_1.89.0             jsonlite_2.0.0             
#> [83] R6_2.6.1                    MatrixGenerics_1.23.0