Skip to content

Commit 6e92227

Browse files
authored
freshen sample output
still not the real output (cwl-runner version & 'resolved' line removed)
1 parent ee8dcbf commit 6e92227

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

_episodes/02-1st-example.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,28 @@ The simplest "hello world" program. This accepts one input parameter, writes a
1717

1818

1919
*1st-tool.cwl*
20+
```
2021
{% include cwl/1st-tool.cwl %}
22+
```
2123

2224
Use a YAML object in a separate file to describe the input of a run:
2325

2426
*echo-job.yml*
27+
```
2528
{% include cwl/echo-job.yml %}
29+
```
2630

2731
Now invoke `cwl-runner` with the tool wrapper and the input object on the command line:
2832

2933
```
3034
$ cwl-runner 1st-tool.cwl echo-job.yml
31-
[job 140199012414352] $ echo 'Hello world!'
35+
[job 1st-tool.cwl] /tmp/tmpmM5S_1$ echo \
36+
'Hello world!'
3237
Hello world!
38+
[job 1st-tool.cwl] completed success
39+
{}
3340
Final process status is success
41+
3442
```
3543

3644
What's going on here? Let's break it down:

0 commit comments

Comments
 (0)