File: test_bad_outputs_wf.cwl

package info (click to toggle)
cwltool 1.0.20181217162649%2Bdfsg-10
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,632 kB
  • sloc: python: 11,008; makefile: 153; sh: 22
file content (34 lines) | stat: -rwxr-xr-x 558 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env cwl-runner
cwlVersion: v1.0
class: Workflow
inputs: []
outputs:
  b:
    type: string
    outputSource: step2/c
steps:
  step1:
    in: []
    out: [c]
    run:
      class: CommandLineTool
      id: subtool
      inputs: []
      outputs:
        b:
          type: string
          outputBinding:
            outputEval: "qq"
      baseCommand: echo
  step2:
    in:
      a: step1/c
    out: [c]
    run:
      class: CommandLineTool
      id: subtool
      inputs:
        a: string
      outputs:
        b: string
      baseCommand: echo