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
4 changes: 2 additions & 2 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ process {
}

withName: MULTIQC_PRE_XR_RUN {
ext.args = { params.multiqc_title ? "--title \"${params.multiqc_title}\"" : "MultiQC Pre Xeniumranger import-segmentation Run" }
ext.args = { params.multiqc_title ? "--title \"${params.multiqc_title}\"" : "--title \"MultiQC Pre Xeniumranger import-segmentation Run\"" }
publishDir = [
path: { "${params.outdir}/${params.mode}/multiqc/raw_bundle" },
mode: params.publish_dir_mode,
Expand All @@ -39,7 +39,7 @@ process {
}

withName: MULTIQC_POST_XR_RUN {
ext.args = { params.multiqc_title ? "--title \"${params.multiqc_title}\"" : "MultiQC Post Xeniumranger import-segmentation Run" }
ext.args = { params.multiqc_title ? "--title \"${params.multiqc_title}\"" : "--title \"MultiQC Post Xeniumranger import-segmentation Run\"" }
publishDir = [
path: { "${params.outdir}/${params.mode}/multiqc/redefined_bundle" },
mode: params.publish_dir_mode,
Expand Down