Skip to content

Commit

Permalink
minimap2 soft-clips supplementary reads by default
Browse files Browse the repository at this point in the history
  • Loading branch information
fellen31 committed Dec 5, 2023
1 parent e220943 commit 5b41cca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions conf/modules/align_reads.config
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ process {

withName: MINIMAP2_ALIGN_UNSPLIT {
if(params.preset == 'revio' | params.preset == 'pacbio') {
ext.args = "-y -x map-hifi --secondary=no"
ext.args = "-y -x map-hifi --secondary=no -Y"
} else if(params.preset == 'ONT_R9' | params.preset == 'ONT_R10') {
ext.args = "-y -x map-ont --secondary=no"
ext.args = "-y -x map-ont --secondary=no -Y"
}

publishDir = [
Expand All @@ -54,9 +54,9 @@ process {

withName: MINIMAP2_ALIGN_SPLIT {
if(params.preset == 'revio' | params.preset == 'pacbio') {
ext.args = "-y -x map-hifi --secondary=no"
ext.args = "-y -x map-hifi --secondary=no -Y"
} else if(params.preset == 'ONT_R9' | params.preset == 'ONT_R10') {
ext.args = "-y -x map-ont --secondary=no"
ext.args = "-y -x map-ont --secondary=no -Y"
}
// Not part of preprocessing workflow now but makes sense to store it there
publishDir = [
Expand Down

0 comments on commit 5b41cca

Please sign in to comment.