Skip to content

Commit

Permalink
Merge pull request #23 from phac-nml/dev
Browse files Browse the repository at this point in the history
Update to version 0.2.1
  • Loading branch information
kylacochrane authored Sep 10, 2024
2 parents e46c369 + 484664f commit bac9034
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
5 changes: 3 additions & 2 deletions modules/local/profile_dists/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand Down

0 comments on commit bac9034

Please sign in to comment.