diff --git a/CHANGELOG.md b/CHANGELOG.md
index 10d7c1c5..d20c013e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,14 +3,22 @@
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.2.0dev - [date]
+## v1.1.1 - Augmented Akita Patch [2023-09-28]
### `Added`
+- [#380](https://github.com/nf-core/taxprofiler/pull/380) Updated to nf-core pipeline template v2.10 (added by @LilyAnderssonLee & @sofstam)
+
### `Fixed`
+- [#383](https://github.com/nf-core/taxprofiler/pull/383) Update the module of KrakenUniq to the latest to account for edge case bugs where FASTQ input was mis-detected as wrong format (❤️ to @asafpr for reporting and solution, fixed by @LilyAnderssonLee)
+
### `Dependencies`
+| Tool | Previous version | New version |
+| ---------- | ---------------- | ----------- |
+| KrakenUniq | 1.0.2 | 1.0.4 |
+
### `Deprecated`
## v1.1.0 - Augmented Akita [2023-09-19]
diff --git a/assets/multiqc_config.yml b/assets/multiqc_config.yml
index cceae699..a6335053 100644
--- a/assets/multiqc_config.yml
+++ b/assets/multiqc_config.yml
@@ -1,7 +1,8 @@
report_comment: >
- This report has been generated by the nf-core/taxprofiler
+ This report has been generated by the nf-core/taxprofiler
analysis pipeline. For information about how to interpret these results, please see the
- documentation.
+ documentation.
+
report_section_order:
"nf-core-taxprofiler-methods-description":
order: -1000
diff --git a/modules.json b/modules.json
index 0cd28763..4a5a718c 100644
--- a/modules.json
+++ b/modules.json
@@ -143,7 +143,7 @@
},
"krakenuniq/preloadedkrakenuniq": {
"branch": "master",
- "git_sha": "911696ea0b62df80e900ef244d7867d177971f73",
+ "git_sha": "451df5258e0c03cb4e835bb02c22a9a31b44eb0d",
"installed_by": ["modules"]
},
"krona/ktimporttaxonomy": {
diff --git a/modules/nf-core/krakenuniq/preloadedkrakenuniq/main.nf b/modules/nf-core/krakenuniq/preloadedkrakenuniq/main.nf
index 69f06581..7083d3f0 100644
--- a/modules/nf-core/krakenuniq/preloadedkrakenuniq/main.nf
+++ b/modules/nf-core/krakenuniq/preloadedkrakenuniq/main.nf
@@ -2,10 +2,10 @@ process KRAKENUNIQ_PRELOADEDKRAKENUNIQ {
tag "$meta.id"
label 'process_high'
- conda "bioconda::krakenuniq=1.0.2"
+ conda "bioconda::krakenuniq=1.0.4"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
- 'https://depot.galaxyproject.org/singularity/krakenuniq:1.0.2--pl5321h19e8d03_0':
- 'biocontainers/krakenuniq:1.0.2--pl5321h19e8d03_0' }"
+ 'https://depot.galaxyproject.org/singularity/krakenuniq:1.0.4--pl5321h19e8d03_0':
+ 'biocontainers/krakenuniq:1.0.4--pl5321h19e8d03_0' }"
input:
tuple val(meta), path(fastqs)
diff --git a/modules/nf-core/krakenuniq/preloadedkrakenuniq/meta.yml b/modules/nf-core/krakenuniq/preloadedkrakenuniq/meta.yml
index 4ac645c5..41620c7b 100644
--- a/modules/nf-core/krakenuniq/preloadedkrakenuniq/meta.yml
+++ b/modules/nf-core/krakenuniq/preloadedkrakenuniq/meta.yml
@@ -27,7 +27,7 @@ input:
type: directory
description: KrakenUniq database
- ram_chunk_size:
- type: val
+ type: string
description: Amount of maximum amount of RAM each chunk of database that should be loaded at any one time
pattern: "*GB"
- save_output_fastqs:
diff --git a/nextflow.config b/nextflow.config
index e4155e0d..3ac23306 100644
--- a/nextflow.config
+++ b/nextflow.config
@@ -368,7 +368,7 @@ manifest {
description = """Taxonomic classification and profiling of shotgun short- and long-read metagenomic data"""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
- version = '1.2.0dev'
+ version = '1.1.1'
doi = '10.5281/zenodo.7728364'
}