Skip to content

Commit

Permalink
adjusted emit channel to include reads
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung committed May 17, 2024
1 parent 7c8b28d commit 699271f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/local/fastp.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ process fastp {

output:
tuple val(meta), file("fastp/*_fastp_R{1,2}.fastq.gz"), emit: fastq, optional: true
path "fastp/*_fastp.html", emit: html, optional: true
path "fastp/*_fastp.json", emit: fastp_files, optional: true
path "logs/${task.process}/*.{log,err}", emit: log
tuple val(meta), env(passed_reads), emit: fastp_results
path "versions.yml", emit: versions
path "fastp/*_fastp.html", emit: html, optional: true
path "fastp/*_fastp.json", emit: fastp_files, optional: true
path "logs/${task.process}/*.{log,err}", emit: log
tuple val(meta), file("fastp/*_fastp_R{1,2}.fastq.gz"), env(passed_reads), emit: fastp_results
path "versions.yml", emit: versions

when:
task.ext.when == null || task.ext.when
Expand Down

0 comments on commit 699271f

Please sign in to comment.