forked from biowdl/tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.wdl
215 lines (178 loc) · 4.08 KB
/
common.wdl
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
version 1.0
task AppendToStringArray {
input {
Array[String] array
String string
}
command {
echo "~{sep='\n' array}
~{string}"
}
output {
Array[String] outArray = read_lines(stdout())
}
runtime {
memory: 1
}
}
# This task will fail if the MD5sum doesn't match the file.
task CheckFileMD5 {
input {
File file
String md5
# By default cromwell expects /bin/bash to be present in the container
# The 'bash' container does not fill this requirement. (It is in /usr/local/bin/bash)
# Use a stable version of debian:stretch-slim for this. (Smaller than ubuntu)
String dockerImage = "debian@sha256:f05c05a218b7a4a5fe979045b1c8e2a9ec3524e5611ebfdd0ef5b8040f9008fa"
}
command {
bash -c '
set -e -o pipefail
echo "~{md5} ~{file}" | md5sum -c
'
}
runtime {
docker: dockerImage
}
}
task ConcatenateTextFiles {
input {
Array[File] fileList
String combinedFilePath
Boolean unzip = false
Boolean zip = false
}
# When input and output is both compressed decompression is not needed
String cmdPrefix = if (unzip && !zip) then "zcat " else "cat "
String cmdSuffix = if (!unzip && zip) then " | gzip -c " else ""
command {
set -e -o pipefail
~{"mkdir -p $(dirname " + combinedFilePath + ")"}
~{cmdPrefix} ~{sep=' ' fileList} ~{cmdSuffix} > ~{combinedFilePath}
}
output {
File combinedFile = combinedFilePath
}
runtime {
memory: 1
}
}
task Copy {
input {
File inputFile
String outputPath
Boolean recursive = false
# Version not that important as long as it is stable.
String dockerImage = "bash:5.0.2"
}
command {
set -e
mkdir -p $(dirname ~{outputPath})
cp ~{true="-r" false="" recursive} ~{inputFile} ~{outputPath}
}
output {
File outputFile = outputPath
}
runtime {
docker: dockerImage
}
}
task CreateLink {
# Making this of type File will create a link to the copy of the file in the execution
# folder, instead of the actual file.
# This cannot be propperly call-cached or used within a container.
input {
String inputFile
String outputPath
}
command {
ln -sf ~{inputFile} ~{outputPath}
}
output {
File link = outputPath
}
}
task MapMd5 {
input {
Map[String,String] map
}
command {
cat ~{write_map(map)} | md5sum - | sed -e 's/ -//'
}
output {
String md5sum = read_string(stdout())
}
runtime {
memory: 1
}
}
task StringArrayMd5 {
input {
Array[String] stringArray
}
command {
set -eu -o pipefail
echo ~{sep=',' stringArray} | md5sum - | sed -e 's/ -//'
}
output {
String md5sum = read_string(stdout())
}
runtime {
memory: 1
}
}
task YamlToJson {
input {
File yaml
String outputJson = basename(yaml, "\.ya?ml$") + ".json"
String dockerImage = "biowdl/pyyaml:3.13-py37-slim"
}
command {
set -e
mkdir -p $(dirname ~{outputJson})
python <<CODE
import json
import yaml
with open("~{yaml}", "r") as input_yaml:
content = yaml.load(input_yaml)
with open("~{outputJson}", "w") as output_json:
json.dump(content, output_json)
CODE
}
output {
File json = outputJson
}
runtime {
docker: dockerImage
}
}
struct Reference {
File fasta
File fai
File dict
}
struct IndexedVcfFile {
File file
File index
String? md5sum
}
struct IndexedBamFile {
File file
File index
String? md5sum
}
struct FastqPair {
File R1
String? R1_md5
File? R2
String? R2_md5
}
struct CaseControl {
String inputName
IndexedBamFile inputFile
String controlName
IndexedBamFile controlFile
}
struct CaseControls {
Array[CaseControl] caseControls
}