Skip to content

Commit

Permalink
Remove CONVERT_ONT_READNAMES
Browse files Browse the repository at this point in the history
  • Loading branch information
fellen31 committed Jun 28, 2024
1 parent 43f55c1 commit 3558d73
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 82 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### `Removed`

- [#237](https://github.com/genomic-medicine-sweden/nallo/pull/237) - Removed the CONVERT_ONT_READNAMES module that was run before calling repeats with TRGT

### `Fixed`

## v0.2.0 - [2024-06-26]
Expand Down
68 changes: 0 additions & 68 deletions modules/local/convert_ont_read_names.nf

This file was deleted.

16 changes: 2 additions & 14 deletions workflows/nallo.nf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ include { SNV_ANNOTATION } from '../subworkflows/local/snv_annotatio

// local
include { FQCRS } from '../modules/local/fqcrs'
include { CONVERT_ONT_READ_NAMES } from '../modules/local/convert_ont_read_names'
include { BUILD_INTERVALS } from '../modules/local/build_intervals/main'
include { SPLIT_BED_CHUNKS } from '../modules/local/split_bed_chunks/main'
include { SAMTOOLS_MERGE } from '../modules/nf-core/samtools/merge/main'
Expand Down Expand Up @@ -324,19 +323,8 @@ workflow NALLO {
}

if(!params.skip_repeat_wf) {
// Repeat analysis with TRGT

// Hack read names
if (params.preset == "ONT_R10") {
CONVERT_ONT_READ_NAMES(hap_bam_bai)
ch_versions = ch_versions.mix(CONVERT_ONT_READ_NAMES.out.versions)

ch_repeat_analysis_in = CONVERT_ONT_READ_NAMES.out.bam_bai
} else {
ch_repeat_analysis_in = hap_bam_bai
}

REPEAT_ANALYSIS( ch_repeat_analysis_in, fasta, fai, ch_trgt_bed )
// Call repeats with TRGT
REPEAT_ANALYSIS( hap_bam_bai, fasta, fai, ch_trgt_bed )
ch_versions = ch_versions.mix(REPEAT_ANALYSIS.out.versions)
}
}
Expand Down

0 comments on commit 3558d73

Please sign in to comment.