comparison env/lib/python3.9/site-packages/cwltool/tests/trs/md5sum-tool.cwl @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
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]