cwl2nxf
cwl2nxf copied to clipboard
Add ENV variable support
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: []