Skip to content

Commit

Permalink
Merge pull request #238 from UPHL-BioNGS/update-241105
Browse files Browse the repository at this point in the history
Update 241105
  • Loading branch information
erinyoung authored Nov 7, 2024
2 parents db7a6cb + d910aa4 commit ca81699
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion modules/local/blast.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process blastn {
tag "${meta.id}"
label "process_medium"
publishDir params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
container 'staphb/blast:2.15.0'
container 'staphb/blast:2.16.0'
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
time '2h'

Expand Down
4 changes: 2 additions & 2 deletions modules/local/datasets.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process datasets_summary {
tag "${taxon}"
label "process_single"
publishDir params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
container 'staphb/ncbi-datasets:16.22.1'
container 'staphb/ncbi-datasets:16.30.0'
time '1h'
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore' }

Expand Down Expand Up @@ -52,7 +52,7 @@ process datasets_download {
// because there's no way to specify threads
label "process_medium"
publishDir path: "${params.outdir}", mode: 'copy', pattern: "logs/*/*log"
container 'staphb/ncbi-datasets:16.22.1'
container 'staphb/ncbi-datasets:16.30.0'
time '5h'
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}

Expand Down
2 changes: 1 addition & 1 deletion modules/local/elgato.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process elgato {
tag "${meta.id}"
label "process_medium"
publishDir path: params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
container 'staphb/elgato:1.19.0'
container 'staphb/elgato:1.20.1'
time '10m'
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}

Expand Down
2 changes: 1 addition & 1 deletion modules/local/iqtree2.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process iqtree2 {
tag "Phylogenetic analysis"
label "process_high"
publishDir params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
container 'staphb/iqtree2:2.3.1'
container 'staphb/iqtree2:2.3.6'
time '24h'
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}

Expand Down
2 changes: 1 addition & 1 deletion modules/local/mlst.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process mlst {
tag "${meta.id}"
label "process_medium"
publishDir params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
container 'staphb/mlst:2.23.0-2024-10-01'
container 'staphb/mlst:2.23.0-2024-11-01'
maxForks 10
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
time '10m'
Expand Down
6 changes: 3 additions & 3 deletions modules/local/pbptyper.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ process pbptyper {
label "process_medium"
stageInMode "copy"
publishDir path: params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
container 'staphb/pbptyper:1.0.4'
container 'staphb/pbptyper:2.0.0'
time '1h'
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}

Expand All @@ -27,7 +27,7 @@ process pbptyper {
log_file=logs/${task.process}/${prefix}.${workflow.sessionId}.log
pbptyper ${args} \
--assembly ${contigs} \
--input ${contigs} \
--prefix ${prefix} \
--outdir pbptyper \
| tee -a \$log_file
Expand All @@ -37,4 +37,4 @@ process pbptyper {
pbptyper: \$(echo \$(pbptyper --version 2>&1) | sed 's/^.*pbptyper, version //;' )
END_VERSIONS
"""
}
}
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ manifest {
author = 'Erin Young'
homePage = 'https://github.com/UPHL-BioNGS/Grandeur'
mainScript = 'main.nf'
version = '4.5.24276'
version = '4.5.24310'
defaultBranch = 'main'
description = 'Grandeur is short-read de novo assembly pipeline with serotyping.'
nextflowVersion = '!>=22.10.1'
Expand Down

0 comments on commit ca81699

Please sign in to comment.