View source: R/biocBuildReport.R
biocBuildReport | R Documentation |
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.
biocBuildReport(
version = BiocManager::version(),
pkgType = c("software", "data-experiment", "data-annotation", "workflows"),
stage.timings = FALSE
)
version |
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 |
pkgType |
|
stage.timings |
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()
latest_build <- biocBuildReport()
head(latest_build)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.