We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8b29fb commit 6bc3e1bCopy full SHA for 6bc3e1b
main.nf
@@ -205,7 +205,7 @@ process mask_beds {
205
// To make intersect files we need to combine them into one channel with
206
// toSortedList() (fermi is before manta in alphabet).
207
masked_vcfs.tap { masked_vcfs }
208
- .filter( ~/manta|fermikit/ )
+ .filter( ~/.*(manta|fermikit).*/ )
209
.toSortedList().set { intersect_input }
210
211
process intersect_files {
@@ -282,10 +282,10 @@ process variant_effect_predictor {
282
fi
283
284
variant_effect_predictor.pl \
285
- -i "\$infile" \
+ -i "\$INFILE" \
286
--format "\$FORMAT" \
287
-cache --dir "\$VEP_CACHE" \
288
- -o "\$outfile" \
+ -o "\$OUTFILE" \
289
--vcf \
290
--merged \
291
--regulatory \
0 commit comments