The online Bioconductor build reports are great for humans to look at, but they are not easily computable. This function scrapes HTML and text files available from the build report online pages to generate a tidy data frame version of the build report.
character(1) the character version number
as used to access the online build report. For
example, "3.14". The default is the "current version"
as given by BiocManager::version()
. Note
that this is a character vector of length one and not a number.
character(1)
The type of packages for which to get build
status information for. Valid values are:
software
: Software packages
data-experiment
: Experiment data packages
data-annotation
: Annotation data packages
workflows
: Workflow packages
logical(1) Whether to include the start, end, and elapsed time for each build, check, install stage from each building in the result (default: FALSE)
A tbl_df
object with columns pkg, version,
author, commit, date, node, stage, and result.
# Set the stage--what version of Bioc am I using?
BiocManager::version()
#> [1] ‘3.20’
latest_build <- biocBuildReport()
#> adding rname 'https://bioconductor.org/checkResults/3.20/bioc-LATEST/BUILD_STATUS_DB.txt'
#> adding rname 'https://bioconductor.org/checkResults/3.20/data-experiment-LATEST/BUILD_STATUS_DB.txt'
#> adding rname 'https://bioconductor.org/checkResults/3.20/data-annotation-LATEST/BUILD_STATUS_DB.txt'
#> adding rname 'https://bioconductor.org/checkResults/3.20/workflows-LATEST/BUILD_STATUS_DB.txt'
#> adding rname 'https://bioconductor.org/checkResults/3.20/bioc-LATEST/report.tgz'
#> adding rname 'https://bioconductor.org/checkResults/3.20/data-experiment-LATEST/report.tgz'
#> adding rname 'https://bioconductor.org/checkResults/3.20/data-annotation-LATEST/report.tgz'
#> adding rname 'https://bioconductor.org/checkResults/3.20/workflows-LATEST/report.tgz'
head(latest_build)
#> # A tibble: 6 × 12
#> pkg author version git_last_commit git_last_commit_date pkgType Deprecated
#> <chr> <chr> <chr> <chr> <dttm> <chr> <lgl>
#> 1 ABSSeq Wentao… 1.60.0 39efc10 2024-10-29 09:51:12 bioc FALSE
#> 2 ABSSeq Wentao… 1.60.0 39efc10 2024-10-29 09:51:12 bioc FALSE
#> 3 ABSSeq Wentao… 1.60.0 39efc10 2024-10-29 09:51:12 bioc FALSE
#> 4 ABSSeq Wentao… 1.60.0 39efc10 2024-10-29 09:51:12 bioc FALSE
#> 5 ABSSeq Wentao… 1.60.0 39efc10 2024-10-29 09:51:12 bioc FALSE
#> 6 ABSSeq Wentao… 1.60.0 39efc10 2024-10-29 09:51:12 bioc FALSE
#> # ℹ 5 more variables: PackageStatus <chr>, node <chr>, stage <chr>,
#> # result <chr>, bioc_version <chr>