diff --git a/CHANGELOG.md b/CHANGELOG.md index 67ef724..fab4ffb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.1] - 2024/09/10 + +### `Changed` + +- Upgraded `profile_dists` to version `1.0.2` in the container closure + ## [0.2.0] - 2024/09/05 ### `Changed` diff --git a/modules/local/profile_dists/main.nf b/modules/local/profile_dists/main.nf index b6b92de..4ddc367 100644 --- a/modules/local/profile_dists/main.nf +++ b/modules/local/profile_dists/main.nf @@ -3,8 +3,9 @@ process PROFILE_DISTS{ tag "Gathering Distances Between Reference and Query Profiles" container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? - 'https://depot.galaxyproject.org/singularity/profile_dists%3A1.0.0--pyh7cba7a3_0' : - 'biocontainers/profile_dists:1.0.0--pyh7cba7a3_0' }" + 'docker.io/mwells14/profile_dists:1.0.2' : + task.ext.override_configured_container_registry != false ? 'docker.io/mwells14/profile_dists:1.0.2' : + 'mwells14/profile_dists:1.0.2' }" input: path query diff --git a/nextflow.config b/nextflow.config index 1882e6f..dbc1487 100644 --- a/nextflow.config +++ b/nextflow.config @@ -222,7 +222,7 @@ manifest { description = """Gas Nomenclature assignment pipeline""" mainScript = 'main.nf' nextflowVersion = '!>=23.04.0' - version = '0.2.0' + version = '0.2.1' doi = '' defaultBranch = 'main' }