comparison env/lib/python3.7/site-packages/cwltool/tests/wf/arguments.cwl @ 5:9b1c78e6ba9c draft default tip

"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author shellac
date Mon, 01 Jun 2020 08:59:25 -0400
parents 79f47841a781
children
comparison
equal deleted inserted replaced
4:79f47841a781 5:9b1c78e6ba9c
1 #!/usr/bin/env cwl-runner
2
3 cwlVersion: v1.0
4 class: CommandLineTool
5 label: Example trivial wrapper for Java 9 compiler
6 hints:
7 DockerRequirement:
8 dockerPull: openjdk:9.0.1-11-slim
9 baseCommand: javac
10 arguments: ["-d", $(runtime.outdir)]
11 inputs:
12 src:
13 type: File
14 inputBinding:
15 position: 1
16 outputs:
17 classfile:
18 type: File
19 outputBinding:
20 glob: "*.class"