Skip to content

Commit b582aae

Browse files
authored
Merge pull request #710 from nf-core/patch
Patch: 3.2.1
2 parents 74b5c92 + daa493f commit b582aae

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

.nf-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ template:
1818
org: nf-core
1919
outdir: .
2020
skip_features: null
21-
version: 3.2.0
21+
version: 3.2.1
2222
update: null

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
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+
## 3.2.1 [2024-10-30]
7+
8+
### `Added`
9+
10+
### `Changed`
11+
12+
### `Fixed`
13+
14+
- [#707](https://github.com/nf-core/mag/pull/674) - Fix missing space resulting in malformed args for MEGAHIT (reported by @d4straub, fix by @jfy133)
15+
16+
### `Dependencies`
17+
18+
### `Deprecated`
19+
620
## 3.2.0 [2024-10-27]
721

822
### `Added`

assets/multiqc_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
report_comment: >
2-
This report has been generated by the <a href="https://github.com/nf-core/mag/releases/tag/3.2.0" target="_blank">nf-core/mag</a>
2+
This report has been generated by the <a href="https://github.com/nf-core/mag/releases/tag/3.2.1" target="_blank">nf-core/mag</a>
33
analysis pipeline. For information about how to interpret these results, please see the
4-
<a href="https://nf-co.re/mag/3.2.0/docs/output" target="_blank">documentation</a>.
4+
<a href="https://nf-co.re/mag/3.2.1/docs/output" target="_blank">documentation</a>.
55
report_section_order:
66
"nf-core-mag-methods-description":
77
order: -1000

conf/modules.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ process {
257257
}
258258

259259
withName: MEGAHIT {
260-
ext.args = { params.megahit_options ? params.megahit_options + "-m ${task.memory.toBytes()}" : "-m ${task.memory.toBytes()}" }
260+
ext.args = { params.megahit_options ? params.megahit_options + " -m ${task.memory.toBytes()}" : "-m ${task.memory.toBytes()}" }
261261
ext.prefix = { "MEGAHIT-${meta.id}" }
262262
publishDir = [path: { "${params.outdir}/Assembly/MEGAHIT" }, mode: params.publish_dir_mode, pattern: "*.{fa.gz,log}"]
263263
}

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ manifest {
375375
description = """Assembly, binning and annotation of metagenomes"""
376376
mainScript = 'main.nf'
377377
nextflowVersion = '!>=24.04.2'
378-
version = '3.2.0'
378+
version = '3.2.1'
379379
doi = '10.1093/nargab/lqac007'
380380
}
381381

0 commit comments

Comments
 (0)