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

Avoid publishing uncompressed VCF-file from HMTNOTE_ANNOTATE #368

Merged
merged 5 commits into from
Jul 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- eKLIPse to identify large mitochondrial deletions [#365](https://github.com/nf-core/raredisease/pull/365)
- UPD+Chromograph to identify and visualize UPD sites and regions in the chromosomes [#364](https://github.com/nf-core/raredisease/pull/364) and [#366](https://github.com/nf-core/raredisease/pull/366)

### Fixed

- Avoiding publishing uncompressed VCF-file from `HMTNOTE_ANNOTATE`. (The corresponding compressed VCF-file still gets published.) [#368](https://github.com/nf-core/raredisease/pull/368)

## v1.0.0 - [2023-06-01]

Initial release of nf-core/raredisease, created with the [nf-core](https://nf-co.re/) template.
Expand Down
5 changes: 1 addition & 4 deletions conf/modules/merge_annotate_MT.config
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,7 @@ process {
ext.prefix = { "${meta.id}_vep_vcfanno_hmtnote_mt" }
ext.args = '--offline'
publishDir = [
path: { "${params.outdir}/annotate_mt" },
mode: params.publish_dir_mode,
pattern: "*{vcf}",
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
enabled: false
]
}

Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/mitochondria/merge_annotate_MT.nf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ include { HAPLOGREP2_CLASSIFY as HAPLOGREP2_CLASSIFY_MT } from '../../..
include { VCFANNO as VCFANNO_MT } from '../../../modules/nf-core/vcfanno/main'
include { ANNOTATE_CADD } from '../annotation/annotate_cadd'
include { TABIX_BGZIPTABIX as ZIP_TABIX_HMTNOTE } from '../../../modules/nf-core/tabix/bgziptabix/main'
include { HMTNOTE_ANNOTATE as HMTNOTE_ANNOTATE } from '../../../modules/nf-core/hmtnote/annotate/main'
include { HMTNOTE_ANNOTATE } from '../../../modules/nf-core/hmtnote/annotate/main'

workflow MERGE_ANNOTATE_MT {
take:
Expand Down