Skip to content

Commit

Permalink
Add deepvariant_vcfstatsreport
Browse files Browse the repository at this point in the history
  • Loading branch information
fellen31 committed Oct 29, 2024
1 parent 79b836b commit 1f0eee0
Show file tree
Hide file tree
Showing 15 changed files with 1,024 additions and 107 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#430](https://github.com/genomic-medicine-sweden/nallo/pull/430) - Added a GitHub action to build and publish docs to GitHub Pages
- [#431](https://github.com/genomic-medicine-sweden/nallo/pull/431) - Added files needed to automatically build and publish docs to GitHub Pages
- [#435](https://github.com/genomic-medicine-sweden/nallo/pull/435) - Added nf-test to rank variants
- [#](https://github.com/genomic-medicine-sweden/nallo/pull/) - Added the vcfstatsreport from DeepVariant to snv calling

### `Changed`

Expand Down
9 changes: 9 additions & 0 deletions conf/modules/short_variant_calling.config
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ process {
meta.sex == 1 ? '--haploid_contigs="chrX,chrY"' : ''
].join(' ') }
}
withName: '.*:SHORT_VARIANT_CALLING:DEEPVARIANT_VCFSTATSREPORT' {
publishDir = [
path: { "${params.outdir}/qc/deepvariant_vcfstatsreport/${meta.id}" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]

}

withName: '.*:SHORT_VARIANT_CALLING:GLNEXUS' {
ext.args = '--config DeepVariant_unfiltered'
Expand Down Expand Up @@ -75,4 +83,5 @@ process {
'-w 10000'
].join(' ')
}

}
121 changes: 67 additions & 54 deletions docs/output.md

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@
"git_sha": "a7e8b8afd4fa82f20d745fa778bfdbf39c1f7efb",
"installed_by": ["modules"]
},
"deepvariant/vcfstatsreport": {
"branch": "master",
"git_sha": "2f9a5431355897e299cb41928c45f51ea8410c42",
"installed_by": ["modules"]
},
"ensemblvep/vep": {
"branch": "master",
"git_sha": "06c8865e36741e05ad32ef70ab3fac127486af48",
Expand Down
59 changes: 59 additions & 0 deletions modules/nf-core/deepvariant/vcfstatsreport/main.nf

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

47 changes: 47 additions & 0 deletions modules/nf-core/deepvariant/vcfstatsreport/meta.yml

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

183 changes: 183 additions & 0 deletions modules/nf-core/deepvariant/vcfstatsreport/tests/main.nf.test

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

Loading

0 comments on commit 1f0eee0

Please sign in to comment.