BiocArchive
is a package dedicated to preserving
reproducibility with older Bioconductor versions. It works for older
Bioconductor releases, for example version 3.14
. Note that
users must have the proper 3.14
setup to be able to install
packages from the archive. This means that users should be running R
version 4.1
.
It is highly recommended that users run docker containers with the appropriate R version installation and install the package via GitHub or via source.
Currently, it is available via GitHub.
The lastBuilt
helper function finds the last built date
for the supplied Bioconductor version. Other functions rely on this date
to install the appropriate packages.
## 3.14
## "2022-04-13"
To install Bioconductor packages from previous releases, we strongly
recommend using Bioconductor Docker containers, where possible. Such
containers will have BiocManager
installed.
BiocArchive
allows versioned installations of CRAN packages from either the
Posit Public Package Manager (P3M
) or the CRAN archive.
To download the Docker container, one can run the docker command:
docker pull bioconductor/bioconductor_docker:RELEASE_3_14
For more information, see the Docker for Bioconductor page: https://www.bioconductor.org/help/docker/
Installations of Bioconductor packages are handled by
BiocManager
and will work as normal within a legacy
container or local installation.
## CRAN
## "https://packagemanager.posit.co/cran/2022-04-13"
## CRAN
## "https://packagemanager.posit.co/cran/2022-04-13"
Note. The dry.run
argument returns the
CRAN
repository location. The default is to install
CRAN
packages from the P3M snapshot repository.
The Posit Public
Package Manager (P3M
) allows installations of packages
from their respective snapshot repositories. To enable installation from
these repositories, users must either set their
getOption("BiocArchive.snapshot")
option or the
snapshot
argument to P3M
. By default, the
package uses P3M
snapshots tied to the last build date of
the Bioconductor version.
## CRAN
## "https://packagemanager.posit.co/cran/2022-04-13"
## CRAN
## "https://packagemanager.posit.co/cran/2022-04-13"
Packages on CRAN have a history of versions at a particular URL location:
https://cran.r-project.org/src/contrib/Archive
A CRAN package from the archive can be installed (from source) using
CRANinstall
:
## https://cran.r-project.org/src/contrib/Archive/dplyr/dplyr_1.0.8.tar.gz
##
## The downloaded source packages are in
## '/tmp/RtmpmlCmOx/downloaded_packages'
The function will attempt to satisfy all dependencies from the CRAN archive.
To see the list of active repositories based on option
configurations, use the repositories()
function:
Note. The R version must coincide with the Bioconductor version sought.
To check whether all packages are within the valid time interval of
the Bioconductor release, the valid()
function will compare
package versions with those in the P3M
repository.
Note. The R version must coincide with the Bioconductor version sought.
## R version 4.4.2 (2024-10-31)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 24.04.1 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=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: Etc/UTC
## tzcode source: system (glibc)
##
## attached base packages:
## [1] stats graphics grDevices utils datasets methods base
##
## other attached packages:
## [1] BiocArchive_1.0.1 BiocStyle_2.35.0
##
## loaded via a namespace (and not attached):
## [1] vctrs_0.6.5 httr_1.4.7 cli_3.6.3
## [4] knitr_1.49 rlang_1.1.4 xfun_0.49
## [7] generics_0.1.3 jsonlite_1.8.9 glue_1.8.0
## [10] buildtools_1.0.0 htmltools_0.5.8.1 maketools_1.3.1
## [13] sys_3.4.3 sass_0.4.9 fansi_1.0.6
## [16] rmarkdown_2.29 tibble_3.2.1 evaluate_1.0.1
## [19] jquerylib_0.1.4 fastmap_1.2.0 yaml_2.3.10
## [22] lifecycle_1.0.4 memoise_2.0.1 BiocManager_1.30.25
## [25] compiler_4.4.2 rvest_1.0.4 codetools_0.2-20
## [28] pkgconfig_2.0.3 timechange_0.3.0 digest_0.6.37
## [31] R6_2.5.1 utf8_1.2.4 pillar_1.9.0
## [34] curl_6.0.1 magrittr_2.0.3 bslib_0.8.0
## [37] tools_4.4.2 lubridate_1.9.3 xml2_1.3.6
## [40] cachem_1.1.0