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

updated listeria parameter #142

Merged
merged 5 commits into from
Nov 27, 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
2 changes: 1 addition & 1 deletion .wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -175,4 +175,4 @@ Christy
Marinier
Petkau
gzipped

monocytogenes
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
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.5.0] - 2024-11-27

### `Added`

Expand All @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- RASUSA now used for down sampling of Nanopore or PacBio data. [PR 125](https://github.com/phac-nml/mikrokondo/pull/125)

- Default *Listeria* quality control parameters apply only to *monocytogenes* now. [PR 142](https://github.com/phac-nml/mikrokondo/pull/142)

### `Updated`

Expand Down Expand Up @@ -191,6 +192,7 @@ Initial release of phac-nml/mikrokondo. Mikrokondo currently supports: read trim

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

[0.5.0]: https://github.com/phac-nml/mikrokondo/releases/tag/0.5.0
[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
Expand Down
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ params {
min_average_coverage = 40
}
listeria {
search = "Listeria"
search = "Listeria monocytogenes"
raw_average_quality = 30
min_n50 = 50000
max_n50 = 3200000
Expand Down Expand Up @@ -1206,7 +1206,7 @@ manifest {
description = """Mikrokondo"""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
version = '0.4.2'
version = '0.5.0'
defaultBranch = 'main'
doi = ''
}
Expand Down
2 changes: 1 addition & 1 deletion tests/pipelines/main.from_assemblies.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ nextflow_pipeline {
assert listeria_metadata."Length Value" == 2944528
assert listeria_metadata."nr contigs Status" == "PASSED"
assert listeria_metadata."nr contigs Value" == 1
assert listeria_metadata."QC Summary" == "FAILED Species ID: Listeria monocytogenes; Passed Tests: 3/4; Organism QC Criteria: Listeria"
assert listeria_metadata."QC Summary" == "FAILED Species ID: Listeria monocytogenes; Passed Tests: 3/4; Organism QC Criteria: Listeria monocytogenes"

assert listeria_metadata."Downsampled" == false

Expand Down