-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaketsvvcfarrays.wdl
39 lines (32 loc) · 976 Bytes
/
maketsvvcfarrays.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
workflow makearrays_workflow {
call makearrays {
}
}
task makearrays {
Array[File] refpanel_sitestsv
Array[File] refpanel_sitestsv_index
Array[File] refpanel_sitesvcf
Array[File] refpanel_sitesvcf_index
Int diskSpaceGb
Int memoryGb
Int preemptible
command <<<
echo "please work"
mv ${sep = ' ' refpanel_sitestsv} /cromwell_root/
mv ${sep = ' ' refpanel_sitestsv_index} /cromwell_root/
mv ${sep = ' ' refpanel_sitesvcf} /cromwell_root/
mv ${sep = ' ' refpanel_sitesvcf_index} /cromwell_root/
>>>
output {
Array[File] refpanel_sitestsv_array = glob("*.tsv.gz")
Array[File] refpanel_sitestsv_index_array = glob("*.tsv.gz.tbi")
Array[File] refpanel_sitesvcf_array = glob("*.vcf.gz")
Array[File] refpanel_sitesvcf_index_array = glob("*.vcf.gz.csi")
}
runtime {
docker: "vanallenlab/samtools_bcftools_htslib:1.9"
memory: "${memoryGb} GB"
disks: "local-disk ${diskSpaceGb} HDD"
preemptible: "${preemptible}"
}
}