Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/cwltool/tests/trs/Dockstore.cwl @ 0:d30785e31577 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author | guerler |
---|---|
date | Fri, 31 Jul 2020 00:18:57 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d30785e31577 |
---|---|
1 #!/usr/bin/env cwl-runner | |
2 | |
3 class: CommandLineTool | |
4 id: Md5sum | |
5 label: Simple md5sum tool | |
6 cwlVersion: v1.0 | |
7 | |
8 $namespaces: | |
9 dct: http://purl.org/dc/terms/ | |
10 foaf: http://xmlns.com/foaf/0.1/ | |
11 | |
12 doc: | | |
13 [](https://quay.io/repository/briandoconnor/dockstore-tool-md5sum) | |
14 [](https://travis-ci.org/briandoconnor/dockstore-tool-md5sum) | |
15 A very, very simple Docker container for the md5sum command. See the [README](https://github.com/briandoconnor/dockstore-tool-md5sum/blob/master/README.md) for more information. | |
16 | |
17 | |
18 #dct:creator: | |
19 # '@id': http://orcid.org/0000-0002-7681-6415 | |
20 # foaf:name: Brian O'Connor | |
21 # foaf:mbox: briandoconnor@gmail.com | |
22 | |
23 requirements: | |
24 - class: DockerRequirement | |
25 dockerPull: quay.io/briandoconnor/dockstore-tool-md5sum:1.0.4 | |
26 - class: InlineJavascriptRequirement | |
27 | |
28 hints: | |
29 - class: ResourceRequirement | |
30 # The command really requires very little resources. | |
31 coresMin: 1 | |
32 ramMin: 1024 | |
33 outdirMin: 1024 | |
34 | |
35 inputs: | |
36 input_file: | |
37 type: File | |
38 inputBinding: | |
39 position: 1 | |
40 doc: The file that will have its md5sum calculated. | |
41 | |
42 outputs: | |
43 output_file: | |
44 type: File | |
45 format: http://edamontology.org/data_3671 | |
46 outputBinding: | |
47 glob: md5sum.txt | |
48 doc: A text file that contains a single line that is the md5sum of the input file. | |
49 | |
50 baseCommand: [/bin/my_md5sum] |