createBiocWorkflow {BiocWorkflowTools}R Documentation

Create a New Bioconductor Workflow Package

Description

Uses create to set up a skeleton for a new Bioconductor workflow package.

Usage

createBiocWorkflow(path, description = getOption("devtools.desc"),
  rstudio = TRUE, ..., open = rstudio)

Arguments

path

location to create new package. The last component of the path will be used as the package name.

description

list of description values to override default values or add additional values.

rstudio

if TRUE, creates an RStudio project file.

...

other arguments passed to create.

open

if TRUE, opens the RStudio project.

Value

File path to the R Markdown vignete (invisibly).

Examples

createBiocWorkflow(file.path(tempdir(), "MyWorkflow"), open = FALSE)

[Package BiocWorkflowTools version 1.6.2 Index]