Skip to content
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

Varlociraptor calls #1154

Draft
wants to merge 9 commits into
base: dev
Choose a base branch
from
Next Next commit
intialise varloc calls sw
  • Loading branch information
FriederikeHanssen committed Jul 12, 2023
commit 2a3534269f667b86408a6e623da4004e94b498fc
15 changes: 15 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,21 @@
"git_sha": "911696ea0b62df80e900ef244d7867d177971f73",
"installed_by": ["modules"]
},
"varlociraptor/callvariants": {
"branch": "master",
"git_sha": "99b332c63d7a6dbef648a2a2c2b03f997ca8e5d1",
"installed_by": ["modules"]
},
"varlociraptor/estimatealignmentproperties": {
"branch": "master",
"git_sha": "99b332c63d7a6dbef648a2a2c2b03f997ca8e5d1",
"installed_by": ["modules"]
},
"varlociraptor/preprocess": {
"branch": "master",
"git_sha": "99b332c63d7a6dbef648a2a2c2b03f997ca8e5d1",
"installed_by": ["modules"]
},
"vcftools": {
"branch": "master",
"git_sha": "911696ea0b62df80e900ef244d7867d177971f73",
Expand Down
48 changes: 48 additions & 0 deletions modules/nf-core/varlociraptor/callvariants/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 66 additions & 0 deletions modules/nf-core/varlociraptor/callvariants/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 43 additions & 0 deletions modules/nf-core/varlociraptor/preprocess/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

81 changes: 81 additions & 0 deletions modules/nf-core/varlociraptor/preprocess/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions subworkflows/local/post_variantcalling/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
//

include { CONCATENATE_GERMLINE_VCFS } from '../vcf_concatenate_germline/main'
include { VARLOCIRAPTOR_CALLS } from '../vcf_varlociraptor_calls/main'

workflow POST_VARIANTCALLING {

take:
cram
fasta
fasta_fai
vcfs
concatenate_vcfs

Expand All @@ -20,6 +24,9 @@ workflow POST_VARIANTCALLING {
versions = versions.mix(CONCATENATE_GERMLINE_VCFS.out.versions)
}

VARLOCIRAPTOR_CALLS(cram, fasta, fasta_fai)
versions = versions.mix(VARLOCIRAPTOR_CALLS.out.versions)

emit:
vcfs // post processed vcfs

Expand Down
Loading
Loading