-
Notifications
You must be signed in to change notification settings - Fork 35
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 skip_qualimap and skip_eklipse parameters #436
add skip_qualimap and skip_eklipse parameters #436
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.
just some small things I was a bit uncertain about :)
conf/modules/qc_bam.config
Outdated
@@ -33,8 +33,10 @@ process { | |||
ext.prefix = { "${meta.id}_hsmetrics" } | |||
} | |||
|
|||
withName: '.*QC_BAM:QUALIMAP_BAMQC' { | |||
ext.prefix = { "${meta.id}_qualimap" } | |||
if (params.skip_qualimap) { |
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.
just checking, does this need to be:
if (params.skip_qualimap) { | |
if (!params.skip_qualimap) { |
as it should only run when wee are not skipping?
eklipse_del = EKLIPSE.out.deletions // channel: [ val(meta), path(csv) ] | ||
eklipse_genes = EKLIPSE.out.genes // channel: [ val(meta), path(csv) ] | ||
eklipse_circos = EKLIPSE.out.circos // channel: [ val(meta), path(png) ] | ||
eklipse_del = ch_eklipse_del // channel: [ val(meta), path(csv) ] |
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.
will they always be empty or do I miss something here? Do you need to add the output from EKLIPSE in line 22 etc.?
🎉 |
PR checklist
Added an option to skip qualimap in the QC subworkflow, and eklipse in the mitochondrial sv call subworkflow.
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).nextflow run . -profile test_one_sample,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).