Skip to content

Commit

Permalink
390 fix threads parameter in medaka (#391)
Browse files Browse the repository at this point in the history
* Update nextflow.base.config

* Update nextflow.ci.config

* Update nextflow.dev.config

* Update nextflow.hopper.config

* Update nextflow.ngp.config

* fix medaka threads option
  • Loading branch information
Emkago authored Jan 31, 2025
1 parent 23d3560 commit 841a067
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Removed serotypefinder from saureus workflow
- Fixed jasen running only on the first row/sample in csv
- Fixed channel problem by changing `Channel.of([])` to `Channel.value([])`
- Fixed medaka by changing `--threads` to `-t` in all the configs

### Changed

Expand Down
2 changes: 1 addition & 1 deletion configs/nextflow.base.config
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ process {
memory = '32.GB'
time=2.h
publishDir = [ path: "${params.outdir}/${params.speciesDir}/medaka", mode: 'copy', overwrite: true ]
ext.args = "--threads 40 -m r941_min_sup_g507"
ext.args = "-t 40 -m r941_min_sup_g507"
}
withName: mlst {
container = "${params.containerDir}/mlst.sif"
Expand Down
2 changes: 1 addition & 1 deletion configs/nextflow.ci.config
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ process {
memory = '32.GB'
time=2.h
publishDir = [ path: "${params.outdir}/${params.speciesDir}/medaka", mode: 'copy', overwrite: true ]
ext.args = "--threads 40 -m r941_min_sup_g507"
ext.args = "-t 40 -m r941_min_sup_g507"
}
withName: mlst {
container = "${params.containerDir}/mlst.sif"
Expand Down
2 changes: 1 addition & 1 deletion configs/nextflow.dev.config
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ process {
memory = '32.GB'
time=2.h
publishDir = [ path: "${params.outdir}/${params.speciesDir}/medaka", mode: 'copy', overwrite: true ]
ext.args = "--threads 40 -m r941_min_sup_g507"
ext.args = "-t 40 -m r941_min_sup_g507"
}
withName: mlst {
container = "https://depot.galaxyproject.org/singularity/mlst:2.23.0--hdfd78af_1"
Expand Down
2 changes: 1 addition & 1 deletion configs/nextflow.hopper.config
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ process {
memory = '32.GB'
time=2.h
publishDir = [ path: "${params.outdir}/${params.speciesDir}/medaka", mode: 'copy', overwrite: true ]
ext.args = "--threads 40 -m r941_min_sup_g507"
ext.args = "-t 40 -m r941_min_sup_g507"
}
withName: mlst {
container = "https://depot.galaxyproject.org/singularity/mlst:2.23.0--hdfd78af_1"
Expand Down
2 changes: 1 addition & 1 deletion configs/nextflow.ngp.config
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ process {
memory = '32.GB'
time=2.h
publishDir = [ path: "${params.outdir}/${params.speciesDir}/medaka", mode: 'copy', overwrite: true ]
ext.args = "--threads 40 -m r941_min_sup_g507"
ext.args = "-t 40 -m r941_min_sup_g507"
}
withName: mlst {
container = "${params.containerDir}/mlst.sif"
Expand Down

0 comments on commit 841a067

Please sign in to comment.