Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to new dev version #166

Merged
merged 4 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions assets/multiqc_config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
report_comment: >
This report has been generated by the <a href="https://github.com/nf-core/phaseimpute/releases/tag/1.0.0" target="_blank">nf-core/phaseimpute</a>
This report has been generated by the <a href="https://github.com/nf-core/phaseimpute/tree/dev" target="_blank">nf-core/phaseimpute</a>
analysis pipeline. For information about how to interpret these results, please see the
<a href="https://nf-co.re/phaseimpute/1.0.0/docs/output" target="_blank">documentation</a>.
<a href="https://nf-co.re/phaseimpute/dev/docs/output" target="_blank">documentation</a>.
report_section_order:
"nf-core-phaseimpute-methods-description":
order: -1000
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ''
}

Expand Down
3 changes: 2 additions & 1 deletion nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading