-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpicard-bam-sort.cwl
56 lines (56 loc) · 1.1 KB
/
picard-bam-sort.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
class: CommandLineTool
cwlVersion: v1.0
id: picard_bam_sort
baseCommand:
- java -jar
- /picard-2.6.0/picard-2.6.0.jar
- SortSam
inputs:
- id: input_bam
type: File
inputBinding:
position: 2
prefix: INPUT=
separate: false
- id: output_bam
type: string?
inputBinding:
position: 3
prefix: OUTPUT=
separate: false
outputs:
- id: output
type: File?
outputBinding:
glob: '*bam'
secondaryFiles:
- ^.bai
label: picard-bam-sort
arguments:
- position: 1
prefix: ''
valueFrom: CREATE_INDEX=true
- position: 4
prefix: ''
valueFrom: SORT_ORDER=coordinate
- position: 5
prefix: ''
valueFrom: VALIDATION_STRINGENCY=STRICT
requirements:
- class: DockerRequirement
dockerPull: 'images.sbgenomics.com/bobo823/gdc-tools:v1.00'
'sbg:job':
inputs:
input_bam:
basename: input.ext
class: File
contents: file contents
nameext: .ext
nameroot: input
path: /path/to/input.ext
secondaryFiles: []
size: 0
output_bam: output_bam-string-value
runtime:
cores: 1
ram: 1000