From 9cb05e4fe624edeadd3de553010a2ffebce09cc9 Mon Sep 17 00:00:00 2001 From: Erin Young Date: Thu, 7 Apr 2022 17:43:20 -0600 Subject: [PATCH] adjusted print statements and added ignore to freyja --- Cecret.nf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cecret.nf b/Cecret.nf index 972b83e..abcee4e 100644 --- a/Cecret.nf +++ b/Cecret.nf @@ -144,7 +144,7 @@ if ( params.maxcpus < 5 ) { // This is where the results will be println("The files and directory for results is " + params.outdir) -println("A table summarizing results will be created: ${params.outdir}/summary.txt and ${workflow.launchDir}/cecret_run_results.txt\n") +println("A table summarizing results will be created: ${params.outdir}/cecret_results.csv\n") Channel .fromPath(params.reference_genome, type:'file') @@ -1377,6 +1377,7 @@ if (params.freyja) { tag "${sample}" cpus params.medcpus container 'staphb/freyja:latest' + errorStrategy 'ignore' input: tuple val(sample), file(bam), file(reference_genome) from trimmed_bams_freyja @@ -1929,7 +1930,7 @@ if (params.nextclade || params.nextclade || params.nextclade) { } else { workflow.onComplete { println("Pipeline completed at: $workflow.complete") - println("A summary of results can be found in a comma-delimited file: ${params.outdir}/summary.csv") + println("A summary of results can be found in a comma-delimited file: ${params.outdir}/summary/combined_summary.csv") println("Execution status: ${ workflow.success ? 'OK' : 'failed' }") } }