Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/cwltool/tests/wf/arguments.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 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" |