Skip to content

Commit

Permalink
uncommented errorStrategy
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung committed Feb 22, 2024
1 parent 60f1752 commit c7e0f8c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion modules/local/blast.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ process blastn {
label "process_medium"
publishDir params.outdir, mode: 'copy'
container 'staphb/blast:2.15.0'
//errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
time '2h'

input:
Expand Down
6 changes: 3 additions & 3 deletions modules/local/blobtools.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ process blobtools_create {
publishDir params.outdir, mode: 'copy'
container 'chrishah/blobtools:v1.1.1'
time '45m'
//errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}

input:
tuple val(meta), file(contig), file(blastn), file(bam)
Expand Down Expand Up @@ -44,7 +44,7 @@ process blobtools_view {
publishDir params.outdir, mode: 'copy'
container 'chrishah/blobtools:v1.1.1'
time '10m'
//errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}

input:
tuple val(meta), file(json)
Expand Down Expand Up @@ -81,7 +81,7 @@ process blobtools_plot {
publishDir params.outdir, mode: 'copy'
container 'chrishah/blobtools:v1.1.1'
time '10m'
//errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}

input:
tuple val(meta), file(json)
Expand Down
2 changes: 1 addition & 1 deletion modules/local/circulocov.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process circulocov {
publishDir path: params.outdir, mode: 'copy'
container 'quay.io/uphl/circulocov:0.1.20240104-2024-02-21'
time '30m'
//errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}

input:
tuple val(meta), file(fastqs), file(contigs)
Expand Down

0 comments on commit c7e0f8c

Please sign in to comment.