diff --git a/CHANGELOG.md b/CHANGELOG.md index af1f5a98..b46d29fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ 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). +## v1.1.0dev + +### `Added` + +### `Changed` + +- [#166](https://github.com/nf-core/phaseimpute/pull/166) - Bump version to 1.1.0dev and update `CHANGELOG.md`. + +### `Fixed` + +- [#166](https://github.com/nf-core/phaseimpute/pull/166) - Fix depth type to `number` to enable float. + ## v1.0.0 - Black Labrador [2024-12-09] Initial release of nf-core/phaseimpute, created with the [nf-core](https://nf-co.re/) template. diff --git a/assets/multiqc_config.yml b/assets/multiqc_config.yml index 75c911d4..ebeb143f 100644 --- a/assets/multiqc_config.yml +++ b/assets/multiqc_config.yml @@ -1,7 +1,7 @@ report_comment: > - This report has been generated by the nf-core/phaseimpute + This report has been generated by the nf-core/phaseimpute analysis pipeline. For information about how to interpret these results, please see the - documentation. + documentation. report_section_order: "nf-core-phaseimpute-methods-description": order: -1000 diff --git a/nextflow.config b/nextflow.config index ed39be1e..420e2d36 100644 --- a/nextflow.config +++ b/nextflow.config @@ -306,7 +306,7 @@ manifest { description = """Phasing and imputation pipeline""" mainScript = 'main.nf' nextflowVersion = '!>=24.04.2' - version = '1.0.0' + version = '1.1.0dev' doi = '' } diff --git a/nextflow_schema.json b/nextflow_schema.json index fe1e75ae..0782dd80 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -85,7 +85,8 @@ "default": "", "properties": { "depth": { - "type": "integer", + "type": "number", + "minimum": 0, "description": "Depth of coverage for the simulated data", "default": 1, "fa_icon": "fas fa-list-ol"