18870: Need to declare NODES as array
[arvados.git] / sdk / cwl / tests / 17879-ignore-sbg-fields.cwl
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 $namespaces:
6   sbg: https://www.sevenbridges.com/
7 class: "Workflow"
8 cwlVersion: v1.1
9 label: "check that sbg x/y fields are correctly ignored"
10 inputs:
11   - id: sampleName
12     type: string
13     label: Sample name
14     'sbg:x': -22
15     'sbg:y': 33.4296875
16 outputs:
17   - id: outstr
18     type: string
19     outputSource: step1/outstr
20 steps:
21   step1:
22     in:
23       sampleName: sampleName
24     out: [outstr]
25     run:
26       class: CommandLineTool
27       inputs:
28         sampleName: string
29       stdout: out.txt
30       outputs:
31         outstr:
32           type: string
33           outputBinding:
34             glob: out.txt
35             loadContents: true
36             outputEval: $(self[0].contents)
37       arguments: [echo, "-n", "foo", $(inputs.sampleName), "bar"]