Skip to content

Commit 4c999cd

Browse files
author
Toby Hodges
committed
merged recent changes from gh-pages
2 parents 4b95a04 + 7763054 commit 4c999cd

28 files changed

+200
-28
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +0,0 @@
1-
Please delete the text below before submitting your contribution.
2-
3-
---
4-
5-
Thanks for contributing! If this contribution is for instructor training, please send an email to [email protected] with a link to this contribution so we can record your progress. You’ve completed your contribution step for instructor checkout just by submitting this contribution.
6-
7-
Please keep in mind that lesson maintainers are volunteers and it may be some time before they can respond to your contribution. Although not all contributions can be incorporated into the lesson materials, we appreciate your time and effort to improve the curriculum. If you have any questions about the lesson maintenance process or would like to volunteer your time as a contribution reviewer, please contact Kate Hertweck ([email protected]).
8-
9-
---

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +0,0 @@
1-
Please delete the text below before submitting your contribution.
2-
3-
---
4-
5-
Thanks for contributing! If this contribution is for instructor training, please send an email to [email protected] with a link to this contribution so we can record your progress. You’ve completed your contribution step for instructor checkout just by submitting this contribution.
6-
7-
Please keep in mind that lesson maintainers are volunteers and it may be some time before they can respond to your contribution. Although not all contributions can be incorporated into the lesson materials, we appreciate your time and effort to improve the curriculum. If you have any questions about the lesson maintenance process or would like to volunteer your time as a contribution reviewer, please contact Kate Hertweck ([email protected]).
8-
9-
---

_episodes/16-file-formats.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ type-checking when creating parameter files.
1919
For file formats, we recommend referencing existing ontologies (like EDAM in
2020
our example), reference a local ontology for your institution, or do not add
2121
a file format initially for quick development before sharing your tool with
22-
others.
22+
others. You can browse existing file format listings for IANA [here][IANA] and
23+
for EDAM [here][EDAM].
2324

2425
Note that for added value `cwltool` can do some basic reasoning based on file
2526
formats and warn you if there seem to be some obvious mismatches.
@@ -49,12 +50,12 @@ Now invoke `cwl-runner` with the tool wrapper and the input object on the
4950
command line:
5051

5152
~~~
52-
$ cwltool metadata_example.cwl sample.json
53+
$ cwltool metadata_example.cwl sample.yml
5354
/usr/local/bin/cwltool 1.0.20161114152756
5455
Resolved 'metadata_example.cwl' to 'file:///media/large_volume/testing/cwl_tutorial2/metadata_example.cwl'
5556
[job metadata_example.cwl] /tmp/tmpNWyAd6$ /bin/sh \
5657
-c \
57-
'wc' '-l' '/tmp/tmpBf6m9u/stge293ac74-3d42-45c9-b506-dd35ea3e6eea/rna.SRR948778.bam' > /tmp/tmpNWyAd6/output.txt
58+
'wc' '-l' '/tmp/tmpBf6m9u/stge293ac74-3d42-45c9-b506-dd35ea3e6eea/file-formats.bam' > /tmp/tmpNWyAd6/output.txt
5859
Final process status is success
5960
{
6061
"report": {
@@ -69,3 +70,6 @@ Final process status is success
6970
}
7071
~~~
7172
{: .output}
73+
74+
[IANA]: https://www.iana.org/assignments/media-types/media-types.xhtml
75+
[EDAM]: http://www.ebi.ac.uk/ols/ontologies/edam/terms?iri=http%3A%2F%2Fedamontology.org%2Fformat_1915

_episodes/16-metadata.md renamed to _episodes/17-metadata.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ and workflows. This example includes metadata allowing others to cite your tool.
2525

2626
*metadata_example2.cwl*
2727

28-
~~~
28+
```
2929
{% include cwl/metadata_example2.cwl %}
30-
~~~
31-
{: .source}
30+
```
3231

3332
#### Extended Example
3433

@@ -39,9 +38,8 @@ requirements in order to use the tool, and a few more metadata fields.
3938

4039
*metadata_example3.cwl*
4140

42-
~~~
41+
```
4342
{% include cwl/metadata_example3.cwl %}
44-
~~~
45-
{: .source}
43+
```
4644

4745
[schema-salad]: http://www.commonwl.org/v1.0/SchemaSalad.html#Explicit_context
File renamed without changes.
File renamed without changes.

_includes/cwl/1st-tool.cwl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env cwl-runner
2+
13
cwlVersion: v1.0
24
class: CommandLineTool
35
baseCommand: echo

_includes/cwl/1st-workflow.cwl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env cwl-runner
2+
13
cwlVersion: v1.0
24
class: Workflow
35
inputs:

_includes/cwl/arguments.cwl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env cwl-runner
2+
13
cwlVersion: v1.0
24
class: CommandLineTool
35
label: Example trivial wrapper for Java 7 compiler

_includes/cwl/array-inputs.cwl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env cwl-runner
2+
13
cwlVersion: v1.0
24
class: CommandLineTool
35
inputs:

0 commit comments

Comments
 (0)