Skip to content

Commit

Permalink
Merge pull request #710 from nf-core/patch
Browse files Browse the repository at this point in the history
Patch: 3.2.1
  • Loading branch information
jfy133 authored Oct 30, 2024
2 parents 74b5c92 + daa493f commit b582aae
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .nf-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ template:
org: nf-core
outdir: .
skip_features: null
version: 3.2.0
version: 3.2.1
update: null
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
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).

## 3.2.1 [2024-10-30]

### `Added`

### `Changed`

### `Fixed`

- [#707](https://github.com/nf-core/mag/pull/674) - Fix missing space resulting in malformed args for MEGAHIT (reported by @d4straub, fix by @jfy133)

### `Dependencies`

### `Deprecated`

## 3.2.0 [2024-10-27]

### `Added`
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/mag/releases/tag/3.2.0" target="_blank">nf-core/mag</a>
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>
analysis pipeline. For information about how to interpret these results, please see the
<a href="https://nf-co.re/mag/3.2.0/docs/output" target="_blank">documentation</a>.
<a href="https://nf-co.re/mag/3.2.1/docs/output" target="_blank">documentation</a>.
report_section_order:
"nf-core-mag-methods-description":
order: -1000
Expand Down
2 changes: 1 addition & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ process {
}

withName: MEGAHIT {
ext.args = { params.megahit_options ? params.megahit_options + "-m ${task.memory.toBytes()}" : "-m ${task.memory.toBytes()}" }
ext.args = { params.megahit_options ? params.megahit_options + " -m ${task.memory.toBytes()}" : "-m ${task.memory.toBytes()}" }
ext.prefix = { "MEGAHIT-${meta.id}" }
publishDir = [path: { "${params.outdir}/Assembly/MEGAHIT" }, mode: params.publish_dir_mode, pattern: "*.{fa.gz,log}"]
}
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ manifest {
description = """Assembly, binning and annotation of metagenomes"""
mainScript = 'main.nf'
nextflowVersion = '!>=24.04.2'
version = '3.2.0'
version = '3.2.1'
doi = '10.1093/nargab/lqac007'
}

Expand Down

0 comments on commit b582aae

Please sign in to comment.