From 6fc3ad97dc69e071d7f855c6fc826dfdf56cb30d Mon Sep 17 00:00:00 2001 From: chainsawriot Date: Wed, 27 Sep 2023 14:31:34 +0200 Subject: [PATCH] Not using ... ref #110 --- R/use_rang.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/use_rang.R b/R/use_rang.R index 9d8ab41..131d58e 100644 --- a/R/use_rang.R +++ b/R/use_rang.R @@ -80,7 +80,7 @@ use_rang <- function(path = ".", add_makefile = TRUE, add_here = TRUE, #' [The Turing Way: Research Compendia](https://the-turing-way.netlify.app/reproducible-research/compendia.html) #' Gorman, KB, Williams TD. and Fraser WR (2014). Ecological Sexual Dimorphism and Environmental Variability within a Community of Antarctic Penguins (Genus Pygoscelis). PLoS ONE 9(3):e90081. \doi{10.1371/journal.pone.0090081} #' @export -create_turing <- function(path, add_rang = TRUE, ...) { +create_turing <- function(path, add_rang = TRUE, add_makefile = TRUE, add_here = TRUE, verbose = TRUE, force = FALSE) { if (isTRUE(dir.exists(path))) { stop("`path` exists.") } @@ -91,7 +91,7 @@ create_turing <- function(path, add_rang = TRUE, ...) { dir.create(file.path(path, "figures")) dir.create(file.path(path, "data_clean")) if (isTRUE(add_rang)) { - use_rang(path, ...) + use_rang(path, add_makefile = add_makefile, add_here = add_here, verbose = verbose, force = force) } invisible(path) }