comparison env/lib/python3.7/site-packages/cwltool/tests/wf/scatter-wf4.json @ 0:26e78fe6e8c4 draft

"planemo upload commit c699937486c35866861690329de38ec1a5d9f783"
author shellac
date Sat, 02 May 2020 07:14:21 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:26e78fe6e8c4
1 {
2 "cwlVersion": "v1.0",
3 "$graph": [
4 {
5 "inputs": [
6 {
7 "inputBinding": {},
8 "type": "string",
9 "id": "#echo/echo_in1"
10 },
11 {
12 "inputBinding": {},
13 "type": "string",
14 "id": "#echo/echo_in2"
15 }
16 ],
17 "requirements": [
18 {
19 "ramMin": 10,
20 "class": "ResourceRequirement"
21 }
22 ],
23 "stdout": "step1_out",
24 "outputs": [
25 {
26 "outputBinding": {
27 "glob": "step1_out",
28 "loadContents": true,
29 "outputEval": "$(self[0].contents)"
30 },
31 "type": "string",
32 "id": "#echo/echo_out"
33 }
34 ],
35 "baseCommand": "echo",
36 "class": "CommandLineTool",
37 "arguments": [
38 "-n",
39 "foo"
40 ],
41 "id": "#echo"
42 },
43 {
44 "inputs": [
45 {
46 "type": {
47 "items": "string",
48 "type": "array"
49 },
50 "id": "#main/inp1"
51 },
52 {
53 "type": {
54 "items": "string",
55 "type": "array"
56 },
57 "id": "#main/inp2"
58 }
59 ],
60 "requirements": [
61 {
62 "class": "ScatterFeatureRequirement"
63 }
64 ],
65 "outputs": [
66 {
67 "type": {
68 "items": "string",
69 "type": "array"
70 },
71 "outputSource": "#main/step1/echo_out",
72 "id": "#main/out"
73 }
74 ],
75 "class": "Workflow",
76 "steps": [
77 {
78 "run": "#echo",
79 "scatter": [
80 "#main/step1/echo_in1",
81 "#main/step1/echo_in2"
82 ],
83 "in": [
84 {
85 "source": "#main/inp1",
86 "id": "#main/step1/echo_in1"
87 },
88 {
89 "source": "#main/inp2",
90 "id": "#main/step1/echo_in2"
91 }
92 ],
93 "scatterMethod": "dotproduct",
94 "id": "#main/step1",
95 "out": [
96 "#main/step1/echo_out"
97 ]
98 }
99 ],
100 "id": "#main"
101 }
102 ]
103 }