-
Notifications
You must be signed in to change notification settings - Fork 44
Replace several skip_<tools> parameters with a single skip_tools parameter #690
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
Conversation
|
skip_me_calling = false | ||
skip_me_annotation = false | ||
skip_mt_annotation = false | ||
skip_repeat_annotation = false | ||
skip_repeat_calling = false | ||
skip_smncopynumbercaller = false | ||
skip_snv_annotation = false |
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.
are you planning to add another skip parameter for the remaining params? Or you plan to infer it from samplesheet in future?
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.
Other skip parameters turn off entire subworkflows so it would be misleading to combine them under skip_tools. So as of now, I don't plan on combining them with skip_tools:)
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.
himm, maybe having them combine into --skip_subworkflows, or adding like --steps "snvcalling, snvannotation,repeat_annotation" might work.. I guess I am into clustering :)
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.
That's a good idea. I will do that in a different PR.
"type": "boolean", | ||
"description": "Specifies whether or not to skip smncopynumbercaller.", | ||
"fa_icon": "fas fa-toggle-on" | ||
}, | ||
"skip_snv_annotation": { |
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.
might make sense to add more general skip option here? like skip "annotation"? I think it would be a rare case to have lets say snvannotation on while svannotaton off?
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.
Depends on the use case, I believe. There are scenarios where someone might have updated databases for SNVs, and in such cases, they might not want to run SV annotation.
| skip_germlinecnvcaller | | | ||
| skip_peddy | | | ||
| skip_smncopynumbercaller | | | ||
| skip_vcf2cytosure | | |
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.
add skip_fastqc
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.
skip_fastqc doesn't exist actually. I just added that functionality to skip_tools 😅
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.
LGTM :)
PR checklist
nf-core pipelines lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).nextflow run . -profile test_one_sample,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).