Skip to content

Commit 61def2d

Browse files
committed
Update docker
1 parent bbcfea0 commit 61def2d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

wdl/RescueAndLocityper.wdl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -121,27 +121,27 @@ task GenerateDBFromVCF {
121121
File reference_index
122122
File counts_jf
123123
File vcf
124+
File bed
124125
String docker
125126
}
126127

127128
Int disk_size = 10
128-
String output_tar = "db.tar.gz"
129+
String output_tar = "vcf_db.tar.gz"
129130

130131
command <<<
131132
set -euxo pipefail
132133
133134
gunzip -c ~{reference} > reference.fa
134135
samtools faidx reference.fa
135136
136-
locityper add -d db \
137+
locityper add -d vcf_db \
138+
-v ~{vcf} \
137139
-r reference.fa \
138140
-j ~{counts_jf} \
139-
-l ~{locus_name} ~{locus_coordinates} ~{alleles_fa}
141+
-L ~{bed}
140142
141-
find ~{locus_name}.db -type f -exec ls -lah {} \;
142-
143143
echo "compressing DB"
144-
tar -czf ~{output_tar} ~{locus_name}.db
144+
tar -czf ~{output_tar} vcf_db
145145
echo "done compressing DB"
146146
>>>
147147

@@ -242,7 +242,7 @@ task Rescue {
242242
}
243243

244244
runtime {
245-
docker: "us.gcr.io/broad-dsp-lrma/lr-hidive:kvg_more_locityper"
245+
docker: "us.gcr.io/broad-dsp-lrma/lr-hidive:kvg_interlaced"
246246
memory: "~{memory_gb} GB"
247247
cpu: num_cpus
248248
disks: "local-disk ~{disk_size_gb} SSD"

0 commit comments

Comments
 (0)