Skip to content

Instantly share code, notes, and snippets.

@jlmelville
Last active November 29, 2021 05:04
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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