Skip to content

Commit a379854

Browse files
committed
Fewer result files and better naming
1 parent 7c6eb52 commit a379854

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

main.nf

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,6 @@ process mask_beds {
185185
output:
186186
file '*_masked.vcf' into masked_vcfs
187187

188-
publishDir params.outdir, mode: 'copy'
189-
190188
executor choose_executor()
191189
queue 'core'
192190
time params.runtime.simple
@@ -218,9 +216,6 @@ process intersect_files {
218216
val nvcfs from count_vcfs
219217
output:
220218
file "combined_masked.vcf" into intersections
221-
file "combined_masked*.vcf"
222-
223-
publishDir params.outdir, mode: 'copy'
224219

225220
executor choose_executor()
226221
queue 'core'
@@ -256,7 +251,7 @@ process variant_effect_predictor {
256251
input:
257252
file infile from annotate_files.tap { annotate_files }
258253
output:
259-
file '*.vep' into vep_outfiles
254+
file '*.vep.vcf'
260255

261256
publishDir params.outdir, mode: 'copy'
262257

@@ -316,7 +311,7 @@ process snpEff {
316311
input:
317312
file vcf from annotate_files.tap { annotate_files }
318313
output:
319-
file '*.snpeff'
314+
file '*.snpeff.vcf'
320315

321316
publishDir params.outdir, mode: 'copy'
322317

0 commit comments

Comments
 (0)