| Type: | Package | 
| Title: | R/Package Version Check | 
| Version: | 0.2.1 | 
| Maintainer: | Guangchuang Yu <guangchuangyu@gmail.com> | 
| Description: | Check latest release version of R and R package (both in 'CRAN', 'Bioconductor' or 'Github'). | 
| URL: | https://github.com/GuangchuangYu/rvcheck | 
| Depends: | R (≥ 3.4.0) | 
| Imports: | BiocManager, utils, yulab.utils | 
| License: | Artistic-2.0 | 
| Encoding: | UTF-8 | 
| RoxygenNote: | 7.1.2 | 
| NeedsCompilation: | no | 
| Packaged: | 2021-10-22 02:08:18 UTC; ygc | 
| Author: | Guangchuang Yu [aut, cre], Chun-hui Gao [ctb] | 
| Repository: | CRAN | 
| Date/Publication: | 2021-10-22 04:40:01 UTC | 
check_bioc
Description
check latest release version of bioconductor package
Usage
check_bioc(pkg = "BiocManager")
Arguments
pkg | 
 package name  | 
Value
list
Author(s)
Guangchuang Yu
Examples
## Not run: 
library(rvcheck)
check_bioc('ggtree')
## End(Not run)
check_cran
Description
check latest release version of cran package
Usage
check_cran(pkg)
Arguments
pkg | 
 package name  | 
Value
list
Author(s)
Guangchuang Yu
Examples
## Not run: 
library(rvcheck)
check_cran('emojifont')
## End(Not run)
check_github
Description
check latest github version of R package
Usage
check_github(pkg)
Arguments
pkg | 
 package name  | 
Value
list
Author(s)
Guangchuang Yu
Examples
## Not run: 
library(rvcheck)
check_github('guangchuangyu/ggtree')
## End(Not run)
check_gitlab
Description
check latest gitlab version of R package
Usage
check_gitlab(pkg)
Arguments
pkg | 
 package name  | 
Value
list
Author(s)
Guangchuang Yu
check_r
Description
check latest R version
Usage
check_r()
Value
list
Author(s)
Guangchuang Yu
Examples
## Not run: 
library(rvcheck)
check_r()
## End(Not run)
Objects exported from other packages
Description
These objects are imported from other packages. Follow the links below to see their documentation.
- yulab.utils
 
update_all
Description
update all packages
Usage
update_all(
  check_R = TRUE,
  which = c("CRAN", "BioC", "github"),
  lib.loc = NULL,
  ...
)
Arguments
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  | 
Author(s)
Guangchuang Yu
Examples
## Not run: 
library(rvcheck)
update_all()
## End(Not run)