Skip to content

Instantly share code, notes, and snippets.

@jlmelville
Last active November 29, 2021 05:04
Show Gist options
  • Save jlmelville/137050f487ab182425225663d14c6092 to your computer and use it in GitHub Desktop.
Save jlmelville/137050f487ab182425225663d14c6092 to your computer and use it in GitHub Desktop.
Testing reverse dependencies for R packages
install.packages("devtools")
devtools::install_github("r-lib/revdepcheck")
# may need to install bioconductor
if (!require("BiocManager", quietly = TRUE)) {
install.packages("BiocManager")
BiocManager::install(version = "3.14")
}
library(revdepcheck)
# if you need to remove old results:
revdep_reset()
revdep_check(quiet = FALSE, num_workers = 4, timeout = as.difftime(120, units = "mins"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment