-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbwa-mem.cwl
93 lines (93 loc) · 1.74 KB
/
bwa-mem.cwl
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
class: CommandLineTool
cwlVersion: v1.0
id: bwa_mem
baseCommand:
- bwa
- mem
inputs:
- id: read_group
type: string?
inputBinding:
position: 3
prefix: '-R'
shellQuote: false
- id: reference
type: File?
inputBinding:
position: 4
secondaryFiles:
- .fai
- .sa
- .pac
- .bwt
- .ann
- .amb
- ^.dict
- id: input1
type: File?
inputBinding:
position: 5
- id: output
type: string?
inputBinding:
position: 8
- id: input2
type: File?
inputBinding:
position: 6
outputs:
- id: output_1
type: File?
outputBinding:
glob: '*bam'
secondaryFiles:
- .bai
label: bwa-mem
arguments:
- position: 1
prefix: '-t'
valueFrom: '8'
- position: 2
prefix: '-T'
valueFrom: '0'
- position: 7
shellQuote: false
valueFrom: '| samtools view -Shb -o'
requirements:
- class: ShellCommandRequirement
- class: DockerRequirement
dockerPull: 'images.sbgenomics.com/bobo823/gdc-tools:v1.00'
'sbg:job':
inputs:
read_group: read_group-string-value
reference:
basename: input.ext
class: File
contents: file contents
nameext: .ext
nameroot: input
path: /path/to/input.ext
secondaryFiles: []
size: 0
input1:
basename: input1.ext
class: File
contents: file contents
nameext: .ext
nameroot: input1
path: /path/to/input1.ext
secondaryFiles: []
size: 0
output: output-string-value
input2:
basename: input.ext
class: File
contents: file contents
nameext: .ext
nameroot: input
path: /path/to/input.ext
secondaryFiles: []
size: 0
runtime:
cores: 1
ram: 1000