File: 1432.cwl

package info (click to toggle)
cwltool 3.1.20250110105449-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 10,516 kB
  • sloc: python: 20,992; javascript: 20,796; sh: 233; makefile: 152
file content (30 lines) | stat: -rwxr-xr-x 495 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
23
24
25
26
27
28
29
30
#!/usr/bin/env cwl-runner
class: Workflow
cwlVersion: v1.2
inputs:
  - id: step1_in
    type: string
  - id: step2_in
    type: string
outputs:
  - id: step1_out
    type: string
    outputSource: step1/out
  - id: step2_out
    type: string
    outputSource: step2/out
steps:
  - id: step1
    in:
      - id: inp
        source: step1_in
    out:
      - id: out
    run: ../echo.cwl
  - id: step2
    in:
      - id: inp
        source: step2_in
    out:
      - id: out
    run: ../echo.cwl