-
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
316 update cellranger modules to latest nf coremodules versions #317
316 update cellranger modules to latest nf coremodules versions #317
Conversation
This PR is against the
|
|
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.
Any idea why the download test might be failing?
conf/modules.config
Outdated
@@ -98,7 +98,7 @@ if(params.aligner == "cellranger") { | |||
path: "${params.outdir}/${params.aligner}/count", | |||
mode: params.publish_dir_mode | |||
] | |||
ext.args = {"--chemistry ${meta.chemistry} " + (meta.expected_cells ? "--expect-cells ${meta.expected_cells}" : '')} | |||
ext.args = {"--chemistry ${meta.chemistry} --create-bam false " + (meta.expected_cells ? "--expect-cells ${meta.expected_cells}" : '')} |
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? E.g. RNA velocity analysis relies on this, I'd expect a couple of users complain about this being default all of a sudden.
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.
New version of cellranger requires this parameter to be used.
Did not know it was used by other workflows. Should I default to true or make a parameter?
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 see. A parameter would be nice, but I don't mind setting to true and following up on this separately.
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.
Now defaulting to true. Anyways, users can still overwrite if needed as it is a ext.args
. So, we can consider having a param later upon request.
No idea actually, it just worked fine in gitpod. |
Ok, I just restarted it, maybe it was random 🤞 |
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).nextflow run . -profile debug,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).