Title: | R/Package Version Check |
---|---|
Description: | Check latest release version of R and R package (both in 'CRAN', 'Bioconductor' or 'Github'). |
Authors: | Guangchuang Yu [aut, cre], Chun-hui Gao [ctb] |
Maintainer: | Guangchuang Yu <[email protected]> |
License: | Artistic-2.0 |
Version: | 0.2.1 |
Built: | 2024-11-02 03:26:16 UTC |
Source: | https://github.com/guangchuangyu/rvcheck |
check latest release version of bioconductor package
check_bioc(pkg = "BiocManager")
check_bioc(pkg = "BiocManager")
pkg |
package name |
list
Guangchuang Yu
## Not run: library(rvcheck) check_bioc('ggtree') ## End(Not run)
## Not run: library(rvcheck) check_bioc('ggtree') ## End(Not run)
check latest release version of cran package
check_cran(pkg)
check_cran(pkg)
pkg |
package name |
list
Guangchuang Yu
## Not run: library(rvcheck) check_cran('emojifont') ## End(Not run)
## Not run: library(rvcheck) check_cran('emojifont') ## End(Not run)
check latest github version of R package
check_github(pkg)
check_github(pkg)
pkg |
package name |
list
Guangchuang Yu
## Not run: library(rvcheck) check_github('guangchuangyu/ggtree') ## End(Not run)
## Not run: library(rvcheck) check_github('guangchuangyu/ggtree') ## End(Not run)
check latest gitlab version of R package
check_gitlab(pkg)
check_gitlab(pkg)
pkg |
package name |
list
Guangchuang Yu
check latest R version
check_r()
check_r()
list
Guangchuang Yu
## Not run: library(rvcheck) check_r() ## End(Not run)
## Not run: library(rvcheck) check_r() ## End(Not run)
update all packages
update_all( check_R = TRUE, which = c("CRAN", "BioC", "github"), lib.loc = NULL, ... )
update_all( check_R = TRUE, which = c("CRAN", "BioC", "github"), lib.loc = NULL, ... )
check_R |
whether check R version |
which |
repo (CRAN, BioC, github) to update |
lib.loc |
location of library, default is NULL and will set to .libPaths() |
... |
additional parameters to install packages |
Guangchuang Yu
## Not run: library(rvcheck) update_all() ## End(Not run)
## Not run: library(rvcheck) update_all() ## End(Not run)