File: optional_array_mismatch.cwl

package info (click to toggle)
cwltool 3.1.20250110105449-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,516 kB
  • sloc: python: 20,992; javascript: 20,796; sh: 233; makefile: 152
file content (22 lines) | stat: -rwxr-xr-x 385 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env cwl-runner
cwlVersion: v1.0
class: Workflow
inputs:
  first_wf_input: string[]?

steps:
  first_step:
    run:
      class: CommandLineTool
      inputs:
        first_clt_input:
          type: File[]?
          inputBinding:
            position: 1
      baseCommand: [ ls, -l ]
      outputs: []
    in:
      first_clt_input: first_wf_input
    out: []

outputs: []