-
Notifications
You must be signed in to change notification settings - Fork 0
/
bowtie2_SE.cwl
74 lines (69 loc) · 1.3 KB
/
bowtie2_SE.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
#!/usr/bin/env cwl-runner
cwlVersion: v1.0
class: CommandLineTool
label: "bowtie2 execution script: Single End mode"
baseCommand: bowtie2
hints:
SoftwareRequirement:
packages:
bowtie2:
specs: [ "http://bowtie-bio.sourceforge.net/bowtie2/index.shtml" ]
version: [ "2.3.4.1" ]
inputs:
fastq_flag:
type: boolean
inputBinding:
position: 1
prefix: -q
seed_n:
type: int
inputBinding:
position: 2
separate: false
prefix: -N
match_n:
type: int
inputBinding:
prefix: -k
separate: false
position: 3
index_loc:
type: Any
inputBinding:
position: 4
prefix: -x
separate: true
input_SE_fastq:
type: File
inputBinding:
prefix: -U
separate: true
itemSeparator: ","
position: 5
output_sam:
type: string
inputBinding:
prefix: -S
separate: true
position: 7
processors:
type: int
inputBinding:
prefix: -p
separate: true
position: 6
local_alignment:
type: boolean
inputBinding:
position: 8
prefix: --local
unaligned_items:
type: boolean
inputBinding:
position: 9
prefix: --no-unal
outputs:
output_file_sam:
type: File
outputBinding:
glob: $(inputs.output_sam)