Skip to content

Commit

Permalink
Merge branch 'feat/split-module-configs' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
fellen31 committed Dec 5, 2023
2 parents 4363b0e + 5b41cca commit bf83f31
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 bf83f31

Please sign in to comment.