Skip to content

Commit c17c98b

Browse files
Merge pull request #104 from nf-core/dev
Release 2.2.2
2 parents 00a02f7 + ac36580 commit c17c98b

File tree

27 files changed

+794
-1446
lines changed

27 files changed

+794
-1446
lines changed

.nf-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ template:
1111
name: pairgenomealign
1212
org: nf-core
1313
outdir: .
14-
version: 2.2.2dev
14+
version: 2.2.2

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
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+
## [v2.2.2](https://github.com/nf-core/pairgenomealign/releases/tag/2.2.2) "Juicy" - [January 30th 2026]
7+
8+
### `Fixed`
9+
10+
- Conforms to [nf-core template version `3.5.1`](https://nf-co.re/blog/2025/tools-3_5_0) ([#95](https://github.com/nf-core/pairgenomealign/issues/95), [#98](https://github.com/nf-core/pairgenomealign/issues/98)).
11+
- Fixed nf-core logo ([#90](https://github.com/nf-core/pairgenomealign/issues/90)).
12+
- Adjusted process requirements to `test_full` case ([#61](https://github.com/nf-core/pairgenomealign/issues/61)).
13+
- Set an icon in the `--targetName` option in the documentation ([#92](https://github.com/nf-core/pairgenomealign/issues/92)).
14+
- Fixed a bug of `last/train` records the wrong value for percent identity ([#96](https://github.com/nf-core/pairgenomealign/issues/96)).
15+
- Merged output channels in `last/dotplot` ([#100](https://github.com/nf-core/pairgenomealign/issues/100))
16+
- Created missing `meta.yml` for subworkflows ([#101](https://github.com/nf-core/pairgenomealign/issues/101)).
17+
- Exclude PNG files from pipeline test, because not reproducible in conda.
18+
19+
### `Dependencies`
20+
21+
| Dependency | Old version | New version |
22+
| -------------- | ----------- | ----------- |
23+
| `assemblyscan` | 0.4.1 | 1.0.0 |
24+
| `MultiQC` | 1.30 | 1.33 |
25+
626
## [v2.2.1](https://github.com/nf-core/pairgenomealign/releases/tag/2.2.1) "C’est quoi ça?" - [August 5th 2025]
727

828
### `Fixed`

assets/multiqc_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
report_comment: >
2-
This report has been generated by the <a href="https://github.com/nf-core/pairgenomealign/tree/dev" target="_blank">nf-core/pairgenomealign</a> analysis pipeline. For information about how to interpret these results, please see the <a href="https://nf-co.re/pairgenomealign/dev/docs/output" target="_blank">documentation</a>.
2+
This report has been generated by the <a href="https://github.com/nf-core/pairgenomealign/releases/tag/2.2.2" target="_blank">nf-core/pairgenomealign</a> analysis pipeline. For information about how to interpret these results, please see the <a href="https://nf-co.re/pairgenomealign/2.2.2/docs/output" target="_blank">documentation</a>.
33
report_section_order:
44
"nf-core-pairgenomealign-methods-description":
55
order: -1000

conf/modules.config

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ process {
1515
publishDir = [
1616
path: { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" },
1717
mode: params.publish_dir_mode,
18-
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
1918
]
2019

2120
withName: 'ASSEMBLYSCAN' {
@@ -51,7 +50,6 @@ process {
5150
ext.prefix = { "${meta.id}.m2o_aln" }
5251
ext.args = { "-m${params.last_split_mismap}" }
5352
}
54-
5553
withName: 'ALIGNMENT_SPLIT_O2O' {
5654
ext.prefix = { "${meta.id}.o2o_aln" }
5755
ext.args = { "--reverse -m${params.last_split_mismap}" }
@@ -118,15 +116,13 @@ process {
118116
publishDir = [
119117
path: { "${params.outdir}/multiqc" },
120118
mode: params.publish_dir_mode,
121-
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
122119
]
123120
}
124121

125122
withName: 'MULTIQC_ASSEMBLYSCAN_PLOT_DATA' {
126123
publishDir = [
127124
path: { "${params.outdir}/multiqc/assemblyscan_plot_data" },
128125
mode: params.publish_dir_mode,
129-
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
130126
]
131127
}
132128

@@ -140,7 +136,7 @@ process {
140136
publishDir = [
141137
path: { "${params.outdir}/alignment" },
142138
mode: params.publish_dir_mode,
143-
saveAs: { filename -> (filename.equals('versions.yml') || filename.endsWith('.sizes')) ? null : filename }
139+
saveAs: { filename -> (filename.endsWith('.sizes')) ? null : filename }
144140
]
145141
}
146142

-25.8 KB
Loading

0 commit comments

Comments
 (0)