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

Remove CONVERT_ONT_READNAMES #237

Merged
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 @@ -20,6 +20,7 @@ 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
- [#238](https://github.com/genomic-medicine-sweden/nallo/pull/238) - Removed the `--extra_gvcfs` parameter

### `Fixed`
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 @@ -318,19 +317,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
Loading