View source: R/BiocCheckGitClone.R
BiocCheckGitClone | R Documentation |
Analyzes an R package for adherence with Bioconductor package guidelines and best practices. The check outputs are categorized into ERROR, WARNING, and NOTE. This function is typically used in the Bioconductor Build System (BBS) and not intended for general use.
BiocCheckGitClone(package = ".", ...)
package |
A directory containing an R source package. Not a package tar ball. |
... |
Currently, only |
BiocCheckGitClone()
reviews R packages for adherence with
Bioconductor package guidelines and best practices. See
https://contributions.bioconductor.org for the latest guidance for
writing Bioconductor software. This function should only be run on a source
directory and not on a tarball.
BiocCheckGitClone
is called within R with, as
BiocCheckGitClone(<package>)
where package
is the source directory
containing the R
package.
BiocCheckGitClone()
is chiefly called for the side effect of the
check reporting. The function returns a BiocCheck
reference class with
three main list elements:
error: Items to address before the package can be accepted
warning: Strongly suggested items that may require attention
note: Items to consider, though not required, before acceptance
Lori Shepherd
https://contributions.bioconductor.org
BiocCheck-class
packageDir <- system.file("testpackages", "testpkg0", package="BiocCheck")
BiocCheckGitClone(packageDir, `quit-with-status`=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.