Skip to content

Commit 6bc3e1b

Browse files
committed
Small bug fix.
Didn't quote vars correctly in one place A regexp was incorrect
1 parent f8b29fb commit 6bc3e1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.nf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ process mask_beds {
205205
// To make intersect files we need to combine them into one channel with
206206
// toSortedList() (fermi is before manta in alphabet).
207207
masked_vcfs.tap { masked_vcfs }
208-
.filter( ~/manta|fermikit/ )
208+
.filter( ~/.*(manta|fermikit).*/ )
209209
.toSortedList().set { intersect_input }
210210

211211
process intersect_files {
@@ -282,10 +282,10 @@ process variant_effect_predictor {
282282
fi
283283
284284
variant_effect_predictor.pl \
285-
-i "\$infile" \
285+
-i "\$INFILE" \
286286
--format "\$FORMAT" \
287287
-cache --dir "\$VEP_CACHE" \
288-
-o "\$outfile" \
288+
-o "\$OUTFILE" \
289289
--vcf \
290290
--merged \
291291
--regulatory \

0 commit comments

Comments
 (0)