Skip to content

Commit 8269755

Browse files
authored
Fix rnaseq preprocessing: don't trim with bad linting (#7881)
1 parent 26ae045 commit 8269755

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • subworkflows/nf-core/fastq_qc_trim_filter_setstrandedness

subworkflows/nf-core/fastq_qc_trim_filter_setstrandedness/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ workflow FASTQ_QC_TRIM_FILTER_SETSTRANDEDNESS {
153153
)
154154
ch_versions = ch_versions.mix(FQ_LINT.out.versions.first())
155155
ch_lint_log = ch_lint_log.mix(FQ_LINT.out.lint)
156-
ch_reads = ch_reads.join(FQ_LINT.out.lint.map{it[0]})
156+
ch_filtered_reads = ch_reads.join(FQ_LINT.out.lint.map{it[0]})
157157
}
158158

159159
//

0 commit comments

Comments
 (0)