diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a9378c4..7893c719 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.3.1] - 2024-07-22 + +### `Fixed` + +- Fixed spelling issues issues in config values. See [PR XX](XX) + ## [0.3.0] - 2024-07-04 ### `Changed` diff --git a/nextflow_schema.json b/nextflow_schema.json index b7864817..a5d9e8d1 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -76,7 +76,7 @@ "properties": { "dehosting_idx": { "type": "string", - "description": "Minimpa2 index for dehosting and kitome removal", + "description": "Minimap2 index for dehosting and kitome removal", "pattern": "^\\S+$", "exists": true, "format": "file-path" @@ -404,7 +404,7 @@ }, "skip_metagenomic_detection": { "type": "boolean", - "description": "For samples to be analyzed as isolates" + "description": "Force samples to be analyzed as isolates" }, "skip_staramr": { "type": "boolean", @@ -429,7 +429,7 @@ "ec_opid": { "type": "number", "default": 90, - "description": "Minimum percent identity to determine O antigens prescence", + "description": "Minimum percent identity to determine O antigens presence", "minimum": 0, "maximum": 100 }, @@ -443,7 +443,7 @@ "ec_hpid": { "type": "number", "default": 95, - "description": "Miniumum percent identity to determine H antigens prescence", + "description": "Miniumum percent identity to determine H antigens presence", "minimum": 0, "maximum": 100 }, @@ -767,4 +767,4 @@ "$ref": "#/definitions/other" } ] -} \ No newline at end of file +}