Get the DESCRIPTION file information in data.table format for all R packages in standard R repositories (CRAN, Bioc). Can return a subset of results for specific packages as well.
get_description_repo(
refs = NULL,
db = NULL,
repo = c("BioCsoft", "BioCann", "BioCexp", "BioCworkflows", "CRAN"),
version = BiocManager::version(),
verbose = TRUE
)
Named list of desc objects.
Reference for one or more GitHub repository in owner/repo format
(e.g."neurogenomics/rworkflows"
), or an R package name
(e.g. "rworkflows"
).
A data.table of R package metadata generated by biocPkgList.
The requested Bioconductor repository. The default will be the Bioconductor software repository: BioCsoft. Available repos include: "BioCsoft", "BioCann", "BioCexp", "BioCworkflows", and "CRAN". Note that not all repos are available for all versions, particularly older versions (but who would use those, right?).
The requested Bioconductor version. Will
default to use the BiocManager defaults (i.e., version()
).
Print messages.