Skip to content

Commit f4daf16

Browse files
author
Peter Amstutz
committed
Remove redundant example- from examples.
1 parent 8008eb7 commit f4daf16

26 files changed

+81
-125
lines changed

draft-3/UserGuide.yml

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@
1111
output. CWL documents are written in [JSON](http://json.org) or
1212
[YAML](http://yaml.org), or a mix of the two.
1313
14-
*example-1st.cwl*
14+
*1st.cwl*
1515
```
16-
- $include: examples/example-1st.cwl
16+
- $include: examples/1st.cwl
1717
- |
1818
```
1919
2020
Use a JSON object in a separate file to describe the input of a run:
2121
22-
*example-echo-job.json*
22+
*echo-job.json*
2323
```
24-
- $include: examples/example-echo-job.json
24+
- $include: examples/echo-job.json
2525
- |
2626
```
2727
@@ -88,15 +88,15 @@
8888
types and appearing on the command line in different ways:
8989
9090
91-
*example-inp.cwl*
91+
*inp.cwl*
9292
```
93-
- $include: examples/example-inp.cwl
93+
- $include: examples/inp.cwl
9494
- |
9595
```
9696
97-
*example-inp-job.json*
97+
*inp-job.json*
9898
```
99-
- $include: examples/example-inp-job.json
99+
- $include: examples/inp-job.json
100100
- |
101101
```
102102
@@ -203,15 +203,15 @@
203203
output parameters returned by the CWL tool are either the output files
204204
themselves, or come from examining the content of those files.
205205
206-
*example-tar.cwl*
206+
*tar.cwl*
207207
```
208-
- $include: examples/example-tar.cwl
208+
- $include: examples/tar.cwl
209209
- |
210210
```
211211
212-
*example-tar-job.json*
212+
*tar-job.json*
213213
```
214-
- $include: examples/example-tar-job.json
214+
- $include: examples/tar-job.json
215215
- |
216216
```
217217
@@ -253,15 +253,15 @@
253253
the name of the file where the output stream should go. Then use `glob`
254254
on `outputBinding` to return the file.
255255
256-
*example-stdout.cwl*
256+
*stdout.cwl*
257257
```
258-
- $include: examples/example-stdout.cwl
258+
- $include: examples/stdout.cwl
259259
- |
260260
```
261261
262-
*example-echo-job.json*
262+
*echo-job.json*
263263
```
264-
- $include: examples/example-echo-job.json
264+
- $include: examples/echo-job.json
265265
- |
266266
```
267267
@@ -293,15 +293,15 @@
293293
see how to reference the value of input parameters dynamically from other
294294
fields.
295295
296-
*example-tar-param.cwl*
296+
*tar-param.cwl*
297297
```
298-
- $include: examples/example-tar-param.cwl
298+
- $include: examples/tar-param.cwl
299299
- |
300300
```
301301
302-
*example-tar-param-job.json*
302+
*tar-param-job.json*
303303
```
304-
- $include: examples/example-tar-param-job.json
304+
- $include: examples/tar-param-job.json
305305
- |
306306
```
307307
@@ -359,15 +359,15 @@
359359
360360
This example runs a simple Node.js script inside a Docker container.
361361
362-
*example-docker.cwl*
362+
*docker.cwl*
363363
```
364-
- $include: examples/example-docker.cwl
364+
- $include: examples/docker.cwl
365365
- |
366366
```
367367
368-
*example-docker-job.json*
368+
*docker-job.json*
369369
```
370-
- $include: examples/example-docker-job.json
370+
- $include: examples/docker-job.json
371371
- |
372372
```
373373
@@ -402,15 +402,15 @@
402402
instruct javac to write the class file to the designated output directory
403403
instead.
404404
405-
*example-arguments.cwl*
405+
*arguments.cwl*
406406
```
407-
- $include: examples/example-arguments.cwl
407+
- $include: examples/arguments.cwl
408408
- |
409409
```
410410
411-
*example-arguments-job.json*
411+
*arguments-job.json*
412412
```
413-
- $include: examples/example-arguments-job.json
413+
- $include: examples/arguments-job.json
414414
- |
415415
```
416416
@@ -458,15 +458,15 @@
458458
under the `type` field with `type: array` and `items` defining the valid
459459
data types that may appear in the array.
460460
461-
*example-array.cwl*
461+
*array.cwl*
462462
```
463-
- $include: examples/example-array.cwl
463+
- $include: examples/array.cwl
464464
- |
465465
```
466466
467-
*example-array-job.json*
467+
*array-job.json*
468468
```
469-
- $include: examples/example-array-job.json
469+
- $include: examples/array-job.json
470470
- |
471471
```
472472
@@ -500,15 +500,15 @@
500500
provided together (they are exclusive). You can use records and type
501501
unions to group parameters together to describe these two conditions.
502502
503-
*example-record.cwl*
503+
*record.cwl*
504504
```
505-
- $include: examples/example-record.cwl
505+
- $include: examples/record.cwl
506506
- |
507507
```
508508
509-
*example-record-job1.json*
509+
*record-job1.json*
510510
```
511-
- $include: examples/example-record-job1.json
511+
- $include: examples/record-job1.json
512512
- |
513513
```
514514
@@ -521,9 +521,9 @@
521521
522522
In the first example, you can't provide `itemA` without also providing `itemB`.
523523
524-
*example-record-job2.json*
524+
*record-job2.json*
525525
```
526-
- $include: examples/example-record-job2.json
526+
- $include: examples/record-job2.json
527527
- |
528528
```
529529
@@ -538,9 +538,9 @@
538538
In the second example, `itemC` and `itemD` are exclusive, so only `itemC`
539539
is added to the command line and `itemD` is ignored.
540540
541-
*example-record-job3.json*
541+
*record-job3.json*
542542
```
543-
- $include: examples/example-record-job2.json
543+
- $include: examples/record-job2.json
544544
- |
545545
```
546546
@@ -562,15 +562,15 @@
562562
variables from the parent process. You can set environment variables for
563563
the tool using `EnvVarRequirement`.
564564
565-
*example-env.cwl*
565+
*env.cwl*
566566
```
567-
- $include: examples/example-env.cwl
567+
- $include: examples/env.cwl
568568
- |
569569
```
570570
571-
*example-echo-job.json*
571+
*echo-job.json*
572572
```
573-
- $include: examples/example-echo-job.json
573+
- $include: examples/echo-job.json
574574
- |
575575
```
576576
@@ -595,9 +595,9 @@
595595
legal you can provide a fragment of Javascript that will be evaluated by
596596
the CWL runner.
597597
598-
*example-expression.cwl*
598+
*expression.cwl*
599599
```
600-
- $include: examples/example-expression.cwl
600+
- $include: examples/expression.cwl
601601
- |
602602
```
603603
@@ -622,15 +622,15 @@
622622
rather than the command line parameters. To do this, use
623623
`CreateFileRequirement`.
624624
625-
*example-createfile.cwl*
625+
*createfile.cwl*
626626
```
627-
- $include: examples/example-createfile.cwl
627+
- $include: examples/createfile.cwl
628628
- |
629629
```
630630
631-
*example-echo-job.json*
631+
*echo-job.json*
632632
```
633-
- $include: examples/example-echo-job.json
633+
- $include: examples/echo-job.json
634634
- |
635635
```
636636
@@ -655,15 +655,15 @@
655655
output directory. In this example, we use a Javascript expression to
656656
extract the base name of the input file from its leading directory path.
657657
658-
*example-linkfile.cwl*
658+
*linkfile.cwl*
659659
```
660-
- $include: examples/example-linkfile.cwl
660+
- $include: examples/linkfile.cwl
661661
- |
662662
```
663663
664-
*example-arguments-job.json*
664+
*arguments-job.json*
665665
```
666-
- $include: examples/example-arguments-job.json
666+
- $include: examples/arguments-job.json
667667
- |
668668
```
669669
File renamed without changes.
File renamed without changes.
File renamed without changes.

draft-3/examples/example-arguments-job.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

draft-3/examples/example-array-job.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

draft-3/examples/example-array.cwl

Lines changed: 0 additions & 33 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)