Skip to content

Commit

Permalink
Merge pull request #393 from UPHL-BioNGS/update-20241210
Browse files Browse the repository at this point in the history
Update 20241210 to 3.22.24345
  • Loading branch information
erinyoung authored Dec 10, 2024
2 parents 021cd6f + aba206a commit 9017340
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: versions
run: |
issue_text="Needing updates: "
workflow_containers=($(grep container modules/* | grep staphb | sort | uniq | grep -v latest | awk '{print $3}' | sed 's/'\''//g'))
workflow_containers=($(grep container modules/local/* | grep staphb | sort | uniq | grep -v latest | awk '{print $3}' | sed 's/'\''//g'))
for container in ${workflow_containers[@]}
do
base=$(echo $container | cut -f 1 -d ":")
Expand All @@ -41,7 +41,7 @@ jobs:
done
latest_nextclade_version=$(docker run nextstrain/nextclade:latest nextclade --version | awk '{print $2}')
worfklow_nextclade_version=$(grep container modules/nextclade.nf | cut -f 2 -d ":" | cut -f 1 -d "'" | head -n 1)
worfklow_nextclade_version=$(grep container modules/local/nextclade.nf | cut -f 2 -d ":" | cut -f 1 -d "'" | head -n 1)
if [[ "$latest_nextclade_version" == "$worfklow_nextclade_version" ]]
then
Expand Down
4 changes: 2 additions & 2 deletions modules/local/freyja.nf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
process FREYJA {
tag "${meta.id}"
label "process_medium"
container 'staphb/freyja:1.5.2-11_30_2024-02-00-2024-12-02'
container 'staphb/freyja:1.5.2-12_08_2024-01-33-2024-12-09'

input:
tuple val(meta), file(bam), file(reference_genome)
Expand Down Expand Up @@ -51,7 +51,7 @@ process FREYJA {
process FREYJA_AGGREGATE {
tag "Aggregating results from freyja"
label "process_single"
container 'staphb/freyja:1.5.2-11_30_2024-02-00-2024-12-02'
container 'staphb/freyja:1.5.2-12_08_2024-01-33-2024-12-09'

input:
file(demix)
Expand Down
6 changes: 3 additions & 3 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -259,11 +259,11 @@ dag {
//########## manifest values ##########
manifest {
mainScript = 'main.nf'
nextflowVersion = '>=22.10.7'
nextflowVersion = '>=24.04.4'
name = 'UPHL-BioNGS/Cecret'
author = 'Erin Young'
homePage = 'https://github.com/UPHL-BioNGS/Cecret'
version = 'v3.22.24331'
version = 'v3.22.24345'
defaultBranch = 'master'
recurseSubmodules = false
description = 'Reference-based consensus creation'
Expand All @@ -284,4 +284,4 @@ validation {
includeConfig 'conf/base.config'

// Load modules.config for DSL2 module specific options
includeConfig 'conf/modules.config'
includeConfig 'conf/modules.config'

0 comments on commit 9017340

Please sign in to comment.