Skip to content

Commit

Permalink
Allow annotation jobs to fail (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
dfornika authored Aug 30, 2023
1 parent ac29bdc commit a646dc6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions modules/bakta.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ process bakta {

tag { sample_id + ' / ' + assembly_mode }

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}*.{gbk,gff,json,log}", mode: 'copy'

input:
Expand Down
2 changes: 2 additions & 0 deletions modules/prokka.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ process prokka {

tag { sample_id + ' / ' + assembly_mode}

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'

input:
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
manifest {
author = 'Dan Fornika'
name = 'BCCDC-PHL/routine-assembly'
version = '0.4.3'
version = '0.4.4'
description = 'BCCDC-PHL Routine Assembly'
mainScript = 'main.nf'
nextflowVersion = '>=20.01.0'
Expand Down

0 comments on commit a646dc6

Please sign in to comment.