blob: cb2484ea27b323eecbdef3e1339b430e821f6179 (
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
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/usr/bin/env cwl-runner
cwlVersion: v1.1
class: CommandLineTool
baseCommand: pggb
inputs:
threads:
type: int
inputBinding:
position: 1
prefix: -t
pggb_wfmash:
type: boolean
inputBinding:
position: 2
prefix: --wfmash
pggb_fasta:
type: File
inputBinding:
position: 3
prefix: -i
pggb_mash_k_mer:
type: int
inputBinding:
position: 4
prefix: -K
pggb_map_percent_identity:
type: int
inputBinding:
position: 5
prefix: -p
pggb_num_secondary_mappings:
type: int
inputBinding:
position: 6
prefix: -n
pggb_segment_length:
type: int
inputBinding:
position: 7
prefix: -s
pggb_output_dir:
type: string
inputBinding:
position: 8
prefix: -o
outputs:
pggb_odgi_graph:
type: File
outputBinding:
glob: '*.smooth.og'
|