-
Notifications
You must be signed in to change notification settings - Fork 467
Varlociraptor integration #1940
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
base: dev
Are you sure you want to change the base?
Conversation
|
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
nextflow run . -profile test,singularity,variantcalling_channels --outdir testing --step variant_calling --tools strelka,varlociraptor --input tests/csv/3.0/recalibrated_germline.csv -dump-channels
nextflow run . -profile test,singularity,variantcalling_channels --outdir testing --step variant_calling --tools strelka,varlociraptor --input tests/csv/3.0/recalibrated.csv -dump-channels
nextflow run . -profile test,singularity,variantcalling_channels --outdir testing --step variant_calling --tools mutect2,varlociraptor --input tests/csv/3.0/recalibrated_somatic.csv -dump-channels For testing! |
publishDir = [ | ||
mode: params.publish_dir_mode, | ||
path: { "${params.outdir}/variant_calling/varlociraptor/${meta.id}/" }, | ||
] | ||
} | ||
|
||
withName: 'NFCORE_SAREK:SAREK:POST_VARIANTCALLING:VCF_VARLOCIRAPTOR_GERMLINE:SORT_CALLED_CHUNKS|NFCORE_SAREK:SAREK:POST_VARIANTCALLING:VCF_VARLOCIRAPTOR_TUMOR_ONLY:SORT_CALLED_CHUNKS' { | ||
ext.prefix = { "${meta.id}.${meta.variantcaller}.sort.${meta.chunk}" } | ||
ext.args = { '--output-type z --write-index=tbi' } | ||
publishDir = [ | ||
mode: params.publish_dir_mode, | ||
path: { "${params.outdir}/variant_calling/varlociraptor/${meta.id}/" }, | ||
] | ||
} | ||
|
||
withName: 'NFCORE_SAREK:SAREK:POST_VARIANTCALLING:VCF_VARLOCIRAPTOR_GERMLINE:MERGE_CALLED_CHUNKS|NFCORE_SAREK:SAREK:POST_VARIANTCALLING:VCF_VARLOCIRAPTOR_TUMOR_ONLY:MERGE_CALLED_CHUNKS' { | ||
ext.prefix = { "${meta.id}.${meta.variantcaller}.varlociraptor" } | ||
ext.args = { '--allow-overlaps --output-type z --write-index=tbi' } | ||
publishDir = [ | ||
mode: params.publish_dir_mode, | ||
path: { "${params.outdir}/variant_calling/varlociraptor/" }, | ||
] | ||
} | ||
|
||
// | ||
// VCF_VARLOCIRAPTOR_SOMATIC MODULES | ||
// | ||
withName: 'NFCORE_SAREK:SAREK:POST_VARIANTCALLING:VCF_VARLOCIRAPTOR_SOMATIC:ALIGNMENTPROPERTIES_NORMAL' { | ||
ext.prefix = { "${meta.normal_id}" } | ||
publishDir = [ | ||
mode: params.publish_dir_mode, | ||
path: { "${params.outdir}/variant_calling/varlociraptor/${meta.normal_id}/" }, | ||
] | ||
} | ||
|
||
withName: 'NFCORE_SAREK:SAREK:POST_VARIANTCALLING:VCF_VARLOCIRAPTOR_SOMATIC:VCFSPLIT_NORMAL' { | ||
ext.prefix = { "${meta.normal_id}.${meta.variantcaller}.split" } | ||
publishDir = [ | ||
mode: params.publish_dir_mode, | ||
path: { "${params.outdir}/variant_calling/varlociraptor/${meta.normal_id}/" }, | ||
] | ||
} | ||
|
||
withName: 'NFCORE_SAREK:SAREK:POST_VARIANTCALLING:VCF_VARLOCIRAPTOR_SOMATIC:PREPROCESS_NORMAL' { | ||
ext.prefix = { "${meta.normal_id}.${meta.variantcaller}.preprocess.${meta.chunk}" } | ||
publishDir = [ | ||
mode: params.publish_dir_mode, | ||
path: { "${params.outdir}/variant_calling/varlociraptor/${meta.normal_id}/" }, | ||
] | ||
} | ||
|
||
withName: 'NFCORE_SAREK:SAREK:POST_VARIANTCALLING:VCF_VARLOCIRAPTOR_SOMATIC:ALIGNMENTPROPERTIES_TUMOR' { | ||
ext.prefix = { "${meta.tumor_id}" } | ||
publishDir = [ | ||
mode: params.publish_dir_mode, | ||
path: { "${params.outdir}/variant_calling/varlociraptor/${meta.tumor_id}/" }, | ||
] | ||
} | ||
|
||
withName: 'NFCORE_SAREK:SAREK:POST_VARIANTCALLING:VCF_VARLOCIRAPTOR_SOMATIC:VCFSPLIT_TUMOR' { | ||
ext.prefix = { "${meta.tumor_id}.${meta.variantcaller}.split" } | ||
publishDir = [ | ||
mode: params.publish_dir_mode, | ||
path: { "${params.outdir}/variant_calling/varlociraptor/${meta.tumor_id}/" }, | ||
] | ||
} | ||
|
||
withName: 'NFCORE_SAREK:SAREK:POST_VARIANTCALLING:VCF_VARLOCIRAPTOR_SOMATIC:PREPROCESS_TUMOR' { | ||
ext.prefix = { "${meta.tumor_id}.${meta.variantcaller}.preprocess.${meta.chunk}" } | ||
publishDir = [ | ||
mode: params.publish_dir_mode, | ||
path: { "${params.outdir}/variant_calling/varlociraptor/${meta.tumor_id}/" }, | ||
] | ||
} | ||
|
||
withName: 'NFCORE_SAREK:SAREK:POST_VARIANTCALLING:VCF_VARLOCIRAPTOR_SOMATIC:VARLOCIRAPTOR_CALLVARIANTS' { | ||
ext.prefix = { "${meta.id}.${meta.variantcaller}.call.${meta.chunk}" } | ||
publishDir = [ | ||
mode: params.publish_dir_mode, | ||
path: { "${params.outdir}/variant_calling/varlociraptor/${meta.id}/" }, | ||
] | ||
} | ||
|
||
withName: 'NFCORE_SAREK:SAREK:POST_VARIANTCALLING:VCF_VARLOCIRAPTOR_SOMATIC:SORT_CALLED_CHUNKS' { | ||
ext.prefix = { "${meta.id}.${meta.variantcaller}.sort.${meta.chunk}" } | ||
ext.args = { '--output-type z --write-index=tbi' } | ||
publishDir = [ | ||
mode: params.publish_dir_mode, | ||
path: { "${params.outdir}/variant_calling/varlociraptor/${meta.id}/" }, | ||
] | ||
} | ||
|
||
withName: 'NFCORE_SAREK:SAREK:POST_VARIANTCALLING:VCF_VARLOCIRAPTOR_SOMATIC:MERGE_CALLED_CHUNKS' { | ||
ext.prefix = { "${meta.id}.${meta.variantcaller}.varlociraptor" } | ||
ext.args = { '--allow-overlaps --output-type z --write-index=tbi' } | ||
publishDir = [ | ||
mode: params.publish_dir_mode, | ||
path: { "${params.outdir}/variant_calling/varlociraptor/" }, | ||
] | ||
} |
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.
let's move this to it's own file maybe
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.
Smart idea, I'm all for it
### Parameters | ||
|
||
| Params | Status | | ||
| ------ | ------ | | ||
| Params | Status | | ||
| ------------------------------ | ------ | | ||
| `--varlocriator_scenario_file` | New | | ||
| `--varlocriator_chunk_size` | New | |
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 do we have 2 parameters section?
PR checklist
nf-core pipelines 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).Followup to https://github.com/nf-core/sarek/pull/1154/files