addPareArticle {PaRe} | R Documentation |
addPareArticle
Description
Writes an Rmd-file to ./vignettes/articles/PaReReport.Rmd
. The relative
path is dictated by the specified path in the Repository object.
Usage
addPareArticle(repo)
Arguments
repo |
(Repository) Repository object. |
Value
NULL
Writes Rmd-file to ./vignettes/articles/PaReReport.Rmd
Examples
fetchedRepo <- tryCatch(
{
# Set dir to clone repository to.
tempDir <- tempdir()
pathToRepo <- file.path(tempDir, "glue")
# Clone repo
git2r::clone(
url = "https://github.com/darwin-eu/IncidencePrevalence.git",
local_path = pathToRepo
)
# Create instance of Repository object.
repo <- PaRe::Repository$new(path = pathToRepo)
# Set fetchedRepo to TRUE if all goes well.
TRUE
},
error = function(e) {
# Set fetchedRepo to FALSE if an error is encountered.
FALSE
},
warning = function(w) {
# Set fetchedRepo to FALSE if a warning is encountered.
FALSE
}
)
if (fetchedRepo) {
# Run makeReport on the Repository object.
addPaReArticle(repo)
}
[Package PaRe version 0.1.13 Index]