MakeWorkflowList() has moved to workr::MakeWorkflowList(). This wrapper
remains for backward compatibility in {gsm.core}.
Usage
MakeWorkflowList(
strNames = NULL,
strPath = "workflow",
strPackage = NULL,
bExact = FALSE,
bRecursive = TRUE
)Arguments
- strNames
array of characterList of workflows to include. NULL (the default) includes all workflows in the specified locations.- strPath
characterThe location of workflow YAML files. If NULL (the default), function will look in/inst/workflowfolder.- strPackage
characterThe package name where the workflow YAML files are located. If NULL, the package will use an absolute path.- bExact
logicalShould strName matches be exact? If false, partial matches will be included. Default FALSE.- bRecursive
logicalFind files in nested folders? Default TRUE
Examples
# get specific workflow files
workflow <- workr::MakeWorkflowList(
strPath = "example_workflow/1_mappings",
strPackage = "gsm.core"
)