Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ workflow FASTQ_QC_TRIM_FILTER_SETSTRANDEDNESS {
BBMAP_BBSPLIT.out.primary_fastq.set { ch_filtered_reads }

ch_versions = ch_versions.mix(BBMAP_BBSPLIT.out.versions.first())
ch_multiqc_files = ch_multiqc_files.mix(BBMAP_BBSPLIT.out.stats)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

are you stripping the meta later? I ran into that on sarek when adding it here

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yep!

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

multiqc_files = ch_multiqc_files.transpose().map { it[1] }


if (!skip_linting) {
FQ_LINT_AFTER_BBSPLIT(
Expand Down
Loading