File: foo-array.cwl

package info (click to toggle)
cwl-utils 0.40-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,164 kB
  • sloc: python: 88,875; makefile: 141; javascript: 91
file content (13 lines) | stat: -rwxr-xr-x 257 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env cwl-runner
class: CommandLineTool
cwlVersion: v1.2
inputs:
  in1: int
baseCommand: [echo]
outputs:
  out1:
    type: string[]
    outputBinding:
      outputEval: ${ return [foo, inputs.in1]; }
requirements:
  InlineJavascriptRequirement: {}