File: record-output-wf_v1_0.cwl

package info (click to toggle)
cwl-utils 0.37-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 5,156 kB
  • sloc: python: 88,920; makefile: 141; javascript: 91
file content (32 lines) | stat: -rwxr-xr-x 467 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env cwl-runner
class: Workflow
cwlVersion: v1.0

inputs:
  irec:
    type:
      name: irec
      type: record
      fields:
      - name: ifoo
        type: File
      - name: ibar
        type: File

outputs:
  orec:
    type:
      type: record
      fields:
      - name: ofoo
        type: File
      - name: obar
        type: File
    outputSource: step1/orec

steps:
  step1:
    run: record-output_v1_0.cwl
    in:
      irec: irec
    out: [orec]