Skip to content

Commit

Permalink
fix empty channel assignment in FASTQ_TRIM_FASTP_FASTQC subworkflow (n…
Browse files Browse the repository at this point in the history
…f-core#3815)

fix empty channel assignment
  • Loading branch information
Daniel-VM authored Sep 13, 2023
1 parent efae1c4 commit bd448d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subworkflows/nf-core/fastq_trim_fastp_fastqc/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ workflow FASTQ_TRIM_FASTP_FASTQC {
FASTQC_RAW (
ch_reads
)
fastqc_raw_html = FASTQC_RAW.out.html
fastqc_raw_zip = FASTQC_RAW.out.zip
ch_fastqc_raw_html = FASTQC_RAW.out.html
ch_fastqc_raw_zip = FASTQC_RAW.out.zip
ch_versions = ch_versions.mix(FASTQC_RAW.out.versions.first())
}

Expand Down

0 comments on commit bd448d5

Please sign in to comment.