Skip to content

Commit

Permalink
Not using ... ref #110
Browse files Browse the repository at this point in the history
  • Loading branch information
chainsawriot committed Sep 27, 2023
1 parent 411d539 commit 6fc3ad9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/use_rang.R
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
}
Expand All @@ -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)
}

0 comments on commit 6fc3ad9

Please sign in to comment.