Skip to content

Commit

Permalink
Merge pull request #332 from UPHL-BioNGS/update-20240521
Browse files Browse the repository at this point in the history
Update 20240521
  • Loading branch information
erinyoung committed May 21, 2024
2 parents a3b709b + 78c165c commit 606dece
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion modules/artic.nf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ process artic {
path "versions.yml", emit: versions

shell:
def args = task.ext.args ?: "${params.artic_options}}"
def args = task.ext.args ?: "${params.artic_options}"
def prefix = task.ext.prefix ?: "${sample}"
"""
mkdir -p artic consensus schema/cecret/V1 logs/${task.process}
Expand Down
6 changes: 3 additions & 3 deletions modules/freyja.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ process freyja_variants {
label "process_medium"
//errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
publishDir path: params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
container 'staphb/freyja:1.5.0-05_11_2024-01-10-2024-05-14'
container 'staphb/freyja:1.5.0-05_17_2024-01-06-2024-05-21'

//#UPHLICA maxForks 10
//#UPHLICA pod annotation: 'scheduler.illumina.com/presetSize', value: 'standard-xlarge'
Expand Down Expand Up @@ -53,7 +53,7 @@ process freyja_demix {
label "process_medium"
//errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
publishDir path: params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
container 'staphb/freyja:1.5.0-05_11_2024-01-10-2024-05-14'
container 'staphb/freyja:1.5.0-05_17_2024-01-06-2024-05-21'


//#UPHLICA maxForks 10
Expand Down Expand Up @@ -105,7 +105,7 @@ process freyja_aggregate {
tag "Aggregating results from freyja"
label "process_single"
publishDir path: params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
container 'staphb/freyja:1.5.0-05_11_2024-01-10-2024-05-14'
container 'staphb/freyja:1.5.0-05_17_2024-01-06-2024-05-21'

//#UPHLICA maxForks 10
//#UPHLICA errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
Expand Down
2 changes: 1 addition & 1 deletion modules/iqtree2.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process iqtree2 {
tag "Creating phylogenetic tree with iqtree"
label "process_high"
publishDir path: params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
container 'staphb/iqtree2:2.2.2.7'
container 'staphb/iqtree2:2.3.1'

//#UPHLICA maxForks 10
//#UPHLICA errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
Expand Down
2 changes: 1 addition & 1 deletion modules/minimap2.nf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ process minimap2 {
path "versions.yml", emit: versions

shell:
def args = task.ext.args ?: "${params.minimap2_options}}"
def args = task.ext.args ?: "${params.minimap2_options}"
def fastq = reads.join(" ")
def prefix = task.ext.prefix ?: "${sample}"
"""
Expand Down
4 changes: 2 additions & 2 deletions modules/nextclade.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process nextclade_dataset {
tag "Downloading Dataset"
label "process_medium"
publishDir path: params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
container 'nextstrain/nextclade:3.4.0'
container 'nextstrain/nextclade:3.5.0'

//#UPHLICA maxForks 10
//#UPHLICA errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
Expand Down Expand Up @@ -47,7 +47,7 @@ process nextclade {
tag "Clade Determination"
label "process_medium"
publishDir path: params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
container 'nextstrain/nextclade:3.4.0'
container 'nextstrain/nextclade:3.5.0'

//#UPHLICA maxForks 10
//#UPHLICA errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ manifest {
name = 'Cecret'
author = 'Erin Young'
homePage = 'https://github.com/UPHL-BioNGS/Cecret'
version = 'v3.13.20240514'
version = 'v3.14.240521'
defaultBranch = 'master'
recurseSubmodules = false
description = 'Reference-based consensus creation'
Expand Down

0 comments on commit 606dece

Please sign in to comment.