-
Notifications
You must be signed in to change notification settings - Fork 4
/
gatk-base_recalibration_print_reads.cwl
72 lines (65 loc) · 1.3 KB
/
gatk-base_recalibration_print_reads.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
cwlVersion: v1.0
class: CommandLineTool
id: gatk_base_recalibration_print_reads
requirements:
- class: InlineJavascriptRequirement
- class: DockerRequirement
dockerPull: broadinstitute/gatk3:3.6-0
- class: InitialWorkDirRequirement
listing:
- entry: $(inputs.reference_genome)
- entry: $(inputs.dict)
- entry: $(inputs.br_model)
- class: ResourceRequirement
outdirMin: 7500
tmpdirMin: 7700
hints:
- class: ResourceRequirement
coresMin: 15
ramMin: 58000
baseCommand:
# - gatk
- java
- -jar
- /usr/GenomeAnalysisTK.jar
- '-T'
- PrintReads
inputs:
- id: reference_genome
type: File
inputBinding:
position: 1
prefix: '-R'
secondaryFiles:
- .fai
- id: dict
type: File
- id: input
type:
- File
inputBinding:
position: 2
prefix: '-I'
secondaryFiles:
- ^.bai
- id: br_model
type:
- File
inputBinding:
position: 4
prefix: '-BQSR'
arguments:
- position: 0
prefix: '-dt'
valueFrom: 'NONE'
- position: 3
prefix: '-o'
valueFrom: $(inputs.input.nameroot).bqsr.bam
outputs:
- id: bqsr_bam
type: File
outputBinding:
glob: $(inputs.input.nameroot).bqsr.bam
secondaryFiles:
- ^.bai
label: gatk-base_recalibration_print_reads