Skip to content

Commit 979453a

Browse files
committed
initial description of cwl-runner interface
1 parent 5316da0 commit 979453a

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

doc/cwl-runner.cwl

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#!/usr/bin/env cwl-runner
2+
class: CommandLineTool
3+
cwlVersion: "cwl:draft-3"
4+
5+
inputs:
6+
- id: outdir
7+
type: string
8+
default: outdir
9+
inputBinding:
10+
- prefix: "--outdir"
11+
12+
- id: quiet
13+
type: bool
14+
inputBinding:
15+
- prefix: "--quiet"
16+
17+
- id: toolfile
18+
type: File
19+
20+
- id: jobfile
21+
type: File
22+
23+
- id: conformance-test
24+
type: bool
25+
inputBinding:
26+
- prefix: "--conformance-test"
27+
28+
- id: basedir
29+
type: string
30+
inputBinding:
31+
- prefix: "--basedir"
32+
33+
- id: no-container
34+
type: bool
35+
inputBinding:
36+
- prefix: "--no-container"
37+
38+
- id: tmp-outdir-prefix
39+
type: string
40+
inputBinding:
41+
- prefix: "--tmp-outdir-prefix"
42+
43+
- id: tmpdir-prefix
44+
type: string
45+
inputBinding:
46+
- prefix: "--tmpdir-prefix"
47+
48+
baseCommand: cwl-runner
49+

0 commit comments

Comments
 (0)