Skip to content

Commit

Permalink
Fix publishDir pattern for prokka outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
dfornika committed May 15, 2024
1 parent 4353a05 commit bf05f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/prokka.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ process prokka {

errorStrategy 'ignore'

publishDir params.versioned_outdir ? "${params.outdir}/${sample_id}/${params.pipeline_short_name}-v${params.pipeline_minor_version}-output" : "${params.outdir}/${sample_id}", pattern: "${sample_id}_${assembler}_prokka.{gbk,gff}", mode: 'copy'
publishDir params.versioned_outdir ? "${params.outdir}/${sample_id}/${params.pipeline_short_name}-v${params.pipeline_minor_version}-output" : "${params.outdir}/${sample_id}", pattern: "${sample_id}_${assembler}_${assembly_mode}_prokka.{gbk,gff}", mode: 'copy'

input:
tuple val(sample_id), path(assembly), val(assembler), val(assembly_mode)
Expand Down

0 comments on commit bf05f40

Please sign in to comment.