Create Workflow
| omics_create_workflow | R Documentation |
Creates a workflow¶
Description¶
Creates a workflow.
Usage¶
omics_create_workflow(name, description, engine, definitionZip,
definitionUri, main, parameterTemplate, storageCapacity, tags,
requestId, accelerators)
Arguments¶
nameA name for the workflow.
descriptionA description for the workflow.
engineAn engine for the workflow.
definitionZipA ZIP archive for the workflow.
definitionUriThe URI of a definition for the workflow.
mainThe path of the main definition file for the workflow.
parameterTemplateA parameter template for the workflow.
storageCapacityThe default storage capacity for the workflow runs, in gibibytes.
tagsTags for the workflow.
requestId[required] To ensure that requests don't run multiple times, specify a unique ID for each request.
acceleratorsThe computational accelerator specified to run the workflow.
Value¶
A list with the following syntax:
list(
arn = "string",
id = "string",
status = "CREATING"|"ACTIVE"|"UPDATING"|"DELETED"|"FAILED"|"INACTIVE",
tags = list(
"string"
)
)
Request syntax¶
svc$create_workflow(
name = "string",
description = "string",
engine = "WDL"|"NEXTFLOW"|"CWL",
definitionZip = raw,
definitionUri = "string",
main = "string",
parameterTemplate = list(
list(
description = "string",
optional = TRUE|FALSE
)
),
storageCapacity = 123,
tags = list(
"string"
),
requestId = "string",
accelerators = "GPU"
)