Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Use distinct output filenames for bcfools (in call_mobile_elements subworkflow) and svdb (in call_sv_tiddit subworkflow) [#716](https://github.com/nf-core/raredisease/pull/716)
- Use nf-core's most severe consequence & pli scripts instead of local ones [#732](https://github.com/nf-core/raredisease/pull/732)
- Use nf-core's VCF_FILTER_BCFTOOLS_ENSEMBLVEP subworkflow to generate clinical set instead of a local subworkflow [#727](https://github.com/nf-core/raredisease/pull/727)
- Don't call mobile elements in mitochondrial DNA. [#741](https://github.com/nf-core/raredisease/pull/741)

### `Fixed`

Expand Down
5 changes: 2 additions & 3 deletions subworkflows/local/call_mobile_elements.nf
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,14 @@ workflow CALL_MOBILE_ELEMENTS {
ch_genome_fai // channel: [mandatory] [ val(meta), path(fai) ]
ch_me_references // channel: [mandatory] [path(tsv)]
ch_case_info // channel: [mandatory] [ val(case_info) ]
val_genome_build // string: [mandatory] GRCh37 or GRCh38

main:
ch_versions = Channel.empty()

// Building chromosome channels based on fasta index
ch_genome_fai
.splitCsv( sep: "\t", elem: 1, limit: 25 )
.map { meta, fai -> [ fai.first() ] }
.splitCsv( sep: "\t", elem: 1, limit: 24 )
.map { _meta, fai -> [ fai.first() ] }
.collect()
.map { chr -> [ chr, chr.size() ] }
.transpose()
Expand Down
3 changes: 1 addition & 2 deletions workflows/raredisease.nf
Original file line number Diff line number Diff line change
Expand Up @@ -728,8 +728,7 @@ workflow RAREDISEASE {
ch_genome_fasta,
ch_genome_fai,
ch_me_references,
ch_case_info,
params.genome
ch_case_info
)
ch_versions = ch_versions.mix(CALL_MOBILE_ELEMENTS.out.versions)

Expand Down
Loading