cwl2nxf icon indicating copy to clipboard operation
cwl2nxf copied to clipboard

Add ENV variable support

Open KevinSayers opened this issue 7 years ago • 0 comments

Add parsing for environment variables from CWL this will then map to Nextflow variables of the style env.foo

cwlVersion: v1.0
class: CommandLineTool
baseCommand: env
requirements:
  EnvVarRequirement:
    envDef:
      HELLO: $(inputs.message)
inputs:
  message: string
outputs: []

KevinSayers avatar Jun 23 '17 14:06 KevinSayers