Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/cwltool/tests/trs/md5sum-tool.cwl @ 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 #!/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 requirements: | |
| 13 - class: DockerRequirement | |
| 14 dockerPull: quay.io/agduncan94/my-md5sum | |
| 15 - class: InlineJavascriptRequirement | |
| 16 | |
| 17 hints: | |
| 18 - class: ResourceRequirement | |
| 19 # The command really requires very little resources. | |
| 20 coresMin: 1 | |
| 21 ramMin: 1024 | |
| 22 outdirMin: 512 | |
| 23 | |
| 24 inputs: | |
| 25 input_file: | |
| 26 type: File | |
| 27 inputBinding: | |
| 28 position: 1 | |
| 29 doc: The file that will have its md5sum calculated. | |
| 30 | |
| 31 outputs: | |
| 32 output_file: | |
| 33 type: File | |
| 34 format: http://edamontology.org/data_3671 | |
| 35 outputBinding: | |
| 36 glob: md5sum.txt | |
| 37 doc: A text file that contains a single line that is the md5sum of the input file. | |
| 38 | |
| 39 baseCommand: [/bin/my_md5sum] |
