Description Usage Arguments Details Value Author(s) References Examples
Analyzes R
packages for compliance with Bioconductor package guidelines
and best practices. Divides output into three categories:
requirements, recommendations, and considerations.
This function is mostly meant to be called from the operating system's
command line (via R CMD BiocCheck
; see the vignette). Not meant
to replace R CMD check
, which should always be run first.
1 2 |
package |
A directory or tarball (.tar.gz file) containing an R source package. |
... |
Run |
BiocCheck()
analyzes R packages for compliance with
Bioconductor package guidelines and best practices. For
the rationale behind these guidelines and best practices,
see the vignette and pages in the references
section.
usage()
displays the options that can be passed
to BiocCheck()
.
BiocCheck
is typically called from the operating system's
command line, as
R CMD BiocCheck package
where package
is a directory or .tar.gz file containing
an R
source package.
BiocCheck
is not meant as a replacement for
R CMD check
, which should always be run first
for best results.
Installing BiocCheck
will attempt to install
the BiocCheck
script, which could fail; details
in the vignette.
See the vignette for detailed explanations of all
the checks performed by BiocCheck
.
Mostly called for the side effect of the information displayed. When called interactively, returns a list with three components:
requirements |
Items that must be fixed before the package
can be accepted into Bioconductor. Equivalent in severity
to |
recommendations |
We strongly suggest fixing these items.
Equivalent in severity to |
considerations |
Fixing these items is not required. Equivalent
in severity to |
, there is no expectation that considerations will escalate in severity.
Dan Tenenbaum
http://www.bioconductor.org/developers/how-to/coding-style/ http://www.bioconductor.org/developers/package-guidelines/ http://www.bioconductor.org/developers/how-to/version-numbering/ http://www.bioconductor.org/developers/how-to/unitTesting-guidelines/
1 2 3 4 5 | packageDir <- system.file("testpackages", "testpkg0", package="BiocCheck")
BiocCheck(packageDir)
## or from the operating system's command line as:
## R CMD BiocCheck myPackage
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.