Skip to content

Commit

Permalink
removed flag
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung committed Jun 26, 2024
1 parent 6ac636d commit a7e196d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/local/elgato.nf
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ process elgato {
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}

input:
tuple val(meta), file(contigs), val(flag)
tuple val(meta), file(contigs)

output:
path "elgato/*/possible_mlsts.txt", emit: collect
path "logs/${task.process}/*.log" , emit: log
path "versions.yml" , emit: versions

when:
(task.ext.when == null || task.ext.when) && flag =~ 'found'
(task.ext.when == null || task.ext.when)

shell:
def args = task.ext.args ?: ''
Expand Down

0 comments on commit a7e196d

Please sign in to comment.