Skip to content

Commit

Permalink
Merge pull request #122 from phac-nml/dev
Browse files Browse the repository at this point in the history
updated nextflow schema for ectyper.
  • Loading branch information
mattheww95 authored Sep 25, 2024
2 parents 37daa4d + 456e539 commit cccd460
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
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).

## `Unreleased`
## [0.4.2] - 2024-09-25

### `Fixed`

- Fixed broken link in readme. [PR 117](https://github.com/phac-nml/mikrokondo/pull/117)

- Fixed ectyper parameter types in the `nextflow_schema.json` from `number` to `integer`. [PR 121](https://github.com/phac-nml/mikrokondo/pull/121)

## [0.4.1] - 2024-09-16

### `Fixed`
Expand Down Expand Up @@ -162,6 +164,8 @@ Initial release of phac-nml/mikrokondo. Mikrokondo currently supports: read trim

- Added integration testing using [nf-test](https://www.nf-test.com/).

[0.4.2]: https://github.com/phac-nml/mikrokondo/releases/tag/0.4.2
[0.4.1]: https://github.com/phac-nml/mikrokondo/releases/tag/0.4.1
[0.4.0]: https://github.com/phac-nml/mikrokondo/releases/tag/0.4.0
[0.3.0]: https://github.com/phac-nml/mikrokondo/releases/tag/0.3.0
[0.2.1]: https://github.com/phac-nml/mikrokondo/releases/tag/0.2.1
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -1195,7 +1195,7 @@ manifest {
description = """Mikrokondo"""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
version = '0.4.1'
version = '0.4.2'
defaultBranch = 'main'
doi = ''
}
Expand Down
8 changes: 4 additions & 4 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -444,28 +444,28 @@
"default": "",
"properties": {
"ec_opid": {
"type": "number",
"type": "integer",
"default": 90,
"description": "Minimum percent identity to determine O antigens presence",
"minimum": 0,
"maximum": 100
},
"ec_opcov": {
"type": "number",
"type": "integer",
"default": 90,
"description": "Minimum percent coverage of O antigen",
"minimum": 0,
"maximum": 100
},
"ec_hpid": {
"type": "number",
"type": "integer",
"default": 95,
"description": "Miniumum percent identity to determine H antigens presence",
"minimum": 0,
"maximum": 100
},
"ec_hpcov": {
"type": "number",
"type": "integer",
"default": 50,
"description": "Minimum percent coverage of H antigen",
"minimum": 0,
Expand Down

0 comments on commit cccd460

Please sign in to comment.