Last active
November 29, 2021 05:04
-
-
Save jlmelville/137050f487ab182425225663d14c6092 to your computer and use it in GitHub Desktop.
Testing reverse dependencies for R packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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