-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.wdl
More file actions
43 lines (37 loc) · 746 Bytes
/
test.wdl
File metadata and controls
43 lines (37 loc) · 746 Bytes
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
version 1.0
task bamstats {
input {
File bam_input
Int mem_gb
}
command {
/usr/local/bin/bamstats ${mem_gb} ${bam_input}
}
output {
File bamstats_report = "bamstats_report.zip"
}
runtime {
docker: "quay.io/collaboratory/dockstore-tool-bamstats:1.25-6_1.0"
memory: mem_gb + "GB"
}
}
workflow bamstatsWorkflow {
input {
File bam_input
Int mem_gb
}
parameter_meta {
bam_input: {
help: "Input file"
}
mem_gb: {
help: "Memory",
suggestions: [8,16]
}
}
call bamstats { input: bam_input=bam_input, mem_gb=mem_gb }
meta {
author: "Andrew Duncan"
email: "andrew@foobar.com"
}
}