Skip to content

Commit 92a0a45

Browse files
The output channel of fastq_fastqc_umitools_trimgalore/fastp is called 'umi_log' and not 'log'. The meta.yml is wrong.
1 parent 6f0da5c commit 92a0a45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workflows/rnaseq/main.nf

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ workflow RNASEQ {
164164
ch_filtered_reads = FASTQ_FASTQC_UMITOOLS_TRIMGALORE.out.reads
165165
ch_trim_read_count = FASTQ_FASTQC_UMITOOLS_TRIMGALORE.out.trim_read_count
166166
ch_multiqc_files = ch_multiqc_files.mix(FASTQ_FASTQC_UMITOOLS_TRIMGALORE.out.fastqc_zip.collect{it[1]}) // FastQC report - untrimmed
167-
ch_multiqc_files = ch_multiqc_files.mix(FASTQ_FASTQC_UMITOOLS_TRIMGALORE.out.log.collect{it[1]}) // umi-tools extract logs
167+
ch_multiqc_files = ch_multiqc_files.mix(FASTQ_FASTQC_UMITOOLS_TRIMGALORE.out.umi_log.collect{it[1]}) // umi-tools extract logs
168168
ch_multiqc_files = ch_multiqc_files.mix(FASTQ_FASTQC_UMITOOLS_TRIMGALORE.out.trim_zip.collect{it[1]}) // FastQC report - trimmed
169169
ch_multiqc_files = ch_multiqc_files.mix(FASTQ_FASTQC_UMITOOLS_TRIMGALORE.out.trim_log.collect{it[1]}) // Trim Galore! trimming report
170170
ch_versions = ch_versions.mix(FASTQ_FASTQC_UMITOOLS_TRIMGALORE.out.versions)

0 commit comments

Comments
 (0)