Skip to content

Commit

Permalink
add missing tuple statement
Browse files Browse the repository at this point in the history
  • Loading branch information
annacprice authored Mar 26, 2024
1 parent c9149c5 commit 00af7e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/preprocessingModules.nf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ process checkBamValidity {
publishDir "${params.output_dir}/${bam_file.getBaseName()}", mode: 'copy', overwrite: 'true', pattern: '*{_err.json,_report.json}'

input:
path(bam_file), path(software_json)
tuple path(bam_file), path(software_json)

output:
tuple path(bam_file), stdout, path(software_json), emit: checkValidity_bam
Expand Down

0 comments on commit 00af7e7

Please sign in to comment.