blob: e1e78f7455ad4e453a4bec69dc9e483b76c224ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#!/usr/bin/env cwl-runner
cwlVersion: v1.1
class: CommandLineTool
baseCommand: python
inputs:
main_py_script:
type: File
inputBinding:
position: 1
newick:
type: string
inputBinding:
position: 2
newick_dimensions:
type: int
inputBinding:
position: 3
prefix: -d
newick_coverage_matrix:
type: File
inputBinding:
position: 3
newick_metadata:
type: string
inputBinding:
position: 4
newick_tree:
type: string
inputBinding:
position: 5
outputs:
metadata_out:
type: File
outputBinding:
glob: 'metadata.tsv'
newick_tree_out:
type: File
outputBinding:
glob: '*.nwk'
|