Skip to content

Commit 8662ca1

Browse files
authored
Merge pull request #52 from phac-nml/bump-version
bumped version
2 parents 1913369 + 5389961 commit 8662ca1

File tree

4 files changed

+23
-18
lines changed

4 files changed

+23
-18
lines changed

CHANGELOG.md

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,37 @@
1-
# mk-kondo/mikrokondo: Changelog
1+
# phac-nml/mikrokondo: Changelog
22

33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6-
## v1.0dev - [date]
6+
## v0.1.0 - [2024-03-22]
77

8-
Initial release of mk-kondo/mikrokondo, created with the [nf-core](https://nf-co.re/) template.
8+
Initial release of phac-nml/mikrokondo. Mikrokondo currently supports: read trimming and quality control, contamination detection, assembly (isolate, metagenomic or hybrid), annotation, AMR detection and subtyping of genomic sequencing data targeting bacterial or metagenomic data.
99

10-
### `Added`
10+
- Bumped version number to 0.1.0
11+
12+
- Updated docs to include awesome-page plugin and restructured readme.
1113

12-
Updated docs to include awesome-page plugin and restructured readme.
14+
- Updated coverage defaults for Shigella, Escherichia and Vibrio
1315

14-
Updated coverage defaults for Shigella, Escherichia and Vibrio
16+
- Updated file outputs to match the nf-iridanext plug-in
1517

16-
Updated file outputs to match the nf-iridanext plug-in
18+
- Incorporated IRIDANext plug-in
1719

18-
Incorporated IRIDANext plug-in
20+
- Upgraded nf-validation to latest version 2.0.0
1921

20-
Upgraded nf-validation to latest version 2.0.0
22+
- Added message to final summary report notifying user if an assembly does not have any contigs exceeding the minimum contig length parameter
2123

22-
Added message to final summary report notifying user if an assembly does not have any contigs exceeding the minimum contig length parameter
24+
- Added contig count check before running Quast to ensure empty files are not passed in.
2325

24-
Added contig count check before running Quast to ensure empty files are not passed in.
26+
- Added process to filter contigs based on a minimum required contig length.
2527

26-
Added process to filter contigs based on a minimum required contig length.
28+
- Added option to force sample to be implemented as an isolate
2729

28-
Added option to force sample to be implemented as an isolate
30+
- Changed salmonella default default coverage to 40
2931

30-
Changed salmonella default default coverage to 40
32+
- Added integration testing using [nf-test](https://www.nf-test.com/).
3133

32-
Added integration testing using [nf-test](https://www.nf-test.com/).
34+
### `Added`
3335

3436
### `Fixed`
3537

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,8 @@ Add `--profile singularity` to switch from using docker by default to using sing
174174

175175
## Troubleshooting and FAQs:
176176

177+
Within release 0.1.0, Bakta is currently skipped however it can be enabled from the command line or within the nextflow.config (please check the docs for more information). It has been disabled by default due issues in using the latest bakta database releases due to an issue with `amr_finder` there are fixes available and older databases still work however they have not been tested. A user can still enable Bakta themselves or fix the database. More information is provided here: https://github.com/oschwengers/bakta/issues/268
178+
177179
For a list of common issues or errors and their solutions, please read our [FAQ section](https://phac-nml.github.io/mikrokondo/troubleshooting/FAQ/).
178180

179181
## References

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ params {
5353
skip_raw_read_metrics = false
5454
skip_version_gathering = false
5555
skip_subtyping = false
56-
skip_bakta = false
56+
skip_bakta = true
5757
skip_abricate = false
5858
skip_checkm = false
5959
skip_depth_sampling = false // TODO have it mentioned that this should be turned off for metagenomic runs
@@ -1026,7 +1026,7 @@ manifest {
10261026
description = """Mikrokondo beta"""
10271027
mainScript = 'main.nf'
10281028
nextflowVersion = '!>=23.04.0'
1029-
version = '1.0dev'
1029+
version = '0.1.0'
10301030
doi = ''
10311031
}
10321032

nextflow_schema.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,7 @@
355355
},
356356
"skip_bakta": {
357357
"type": "boolean",
358+
"default": true,
358359
"description": "Skip annotation with Bakta"
359360
},
360361
"skip_abricate": {
@@ -572,4 +573,4 @@
572573
"$ref": "#/definitions/other"
573574
}
574575
]
575-
}
576+
}

0 commit comments

Comments
 (0)