checkVignettes {tools} | R Documentation |
Check Package Vignettes
Description
Check all vignettes of a package by running
Sweave
(or other custom weave function) and/or
Stangle
(or other custom tangle function) on them.
All R source code files found after the tangling step are
source
ed to check whether all code can be
executed without errors.
Usage
checkVignettes(package, dir, lib.loc = NULL,
tangle = TRUE, weave = TRUE, latex = FALSE,
workdir = c("tmp", "src", "cur"),
keepfiles = FALSE)
Arguments
package |
a character string naming an installed package. If given, vignette source files are looked for in subdirectory ‘doc’. |
dir |
a character string specifying the path to a package's root source directory. If given, vignette source files are looked for in subdirectory ‘vignettes’. |
lib.loc |
a character vector of directory names of R libraries,
or |
tangle |
Perform a tangle and |
weave |
Perform a weave? |
latex |
logical: if |
workdir |
Directory used as working directory while checking the
vignettes. If |
keepfiles |
Delete files in the temporary directory? This option is
ignored when |
Details
This function first uses pkgVignettes
to find the
package vignettes, and in particular their vignette engines (see
vignetteEngine
).
If tangle
is true, it then runs Stangle
(or
other custom tangle function provided by the engine) to produce (one
or more) R code files from each vignette, then source
s
each code file in turn.
If weave
is true, the vignettes are run through
Sweave
(or other custom weave function provided by the
engine). If latex
is also true and there is no ‘Makefile’
in the vignettes directory, texi2pdf
is run on the
intermediate ‘.tex’ files from weaving for those vignettes which
did not give errors in the previous steps.
Value
An object of class "checkVignettes"
, which is a list with the
error messages found during the tangle, source, weave and latex steps.
There is a print
method for displaying the information
contained in such objects.