-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add cellranger to multiqc report #244
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a minor question about what the map is doing, but otherwise all fine.
@@ -193,6 +194,9 @@ workflow SCRNASEQ { | |||
ch_versions = ch_versions.mix(CELLRANGER_ALIGN.out.ch_versions) | |||
ch_mtx_matrices = ch_mtx_matrices.mix(CELLRANGER_ALIGN.out.cellranger_out) | |||
ch_star_index = CELLRANGER_ALIGN.out.star_index | |||
ch_multiqc_cellranger = CELLRANGER_ALIGN.out.cellranger_out.map{ | |||
meta, outs -> outs.findAll{ it -> it.name == "web_summary.html"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this part necessary? Is this something that could be changed in the CELLRANGER_ALIGN
module to make it play nicely with multiqc out of the box?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's mostly to make MultiQC more efficient, because it only gets the files it needs (the full cellranger output dir contains a lot of files)
Since MultiQC v1.15, there's a cellranger module.
This PR activates this functionality for the cellranger branch of the pipeline.
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).Partly addresses #80