Skip to content

Commit

Permalink
Updated comments in main.nf to represent the posiblity of not not ala…
Browse files Browse the repository at this point in the history
…ysing read pairs!
  • Loading branch information
simonleandergrimm committed Dec 9, 2024
1 parent e24d79e commit b38b93d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions subworkflows/local/qc/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ workflow QC {
stage_label
single_end
main:
// 1. Run FASTQC on each pair of read files
// 1. Run FASTQC on each read file / pair of read files
fastqc_ch = FASTQC_LABELED(reads, fastqc_cpus, fastqc_mem)
// 2. Extract data with MultiQC for each pair of read files
// 2. Extract data with MultiQC for each read file / pair of read files
multiqc_ch = MULTIQC_LABELED(stage_label, fastqc_ch.zip)
// 3. Summarize MultiQC information for each pair of read files
// 3. Summarize MultiQC information for each read file / pair of read files
process_ch = SUMMARIZE_MULTIQC_PAIR(multiqc_ch.data, single_end)
// 4. Collate MultiQC outputs
multiqc_basic_ch = process_ch.map{ it[0] }.collect().ifEmpty([])
Expand Down

0 comments on commit b38b93d

Please sign in to comment.