Skip to content

Commit 8abaab4

Browse files
authored
Merge pull request #366 from drpatelh/fixes
Final pre-release fixes
2 parents 363bdda + 1faf8b1 commit 8abaab4

File tree

22 files changed

+138
-133
lines changed

22 files changed

+138
-133
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +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-
## [[2.6](https://github.com/nf-core/viralrecon/releases/tag/2.6)] - 2023-03-17
6+
## [[2.6.0](https://github.com/nf-core/viralrecon/releases/tag/2.6.0)] - 2023-03-23
7+
8+
### Credits
9+
10+
Special thanks to the following for their code contributions to the release:
11+
12+
- [Friederike Hanssen](https://github.com/FriederikeHanssen)
13+
- [Hugo Tavares](https://github.com/tavareshugo)
14+
- [Matthew Wells](https://github.com/mattheww95)
15+
- [Maxime Garcia](https://github.com/maxulysse)
16+
- [Phil Ewels](https://github.com/ewels)
17+
- [Sara Monzón](https://github.com/saramonzon)
18+
19+
Thank you to everyone else that has contributed by reporting bugs, enhancements or in any other way, shape or form.
720

821
### Enhancements & fixes
922

modules.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"bcftools/norm": {
4444
"branch": "master",
45-
"git_sha": "c8e35eb2055c099720a75538d1b8adb3fb5a464c",
45+
"git_sha": "bcad95fb35e567ad25840d3297c3e17eff211a3a",
4646
"installed_by": ["modules"]
4747
},
4848
"bcftools/query": {
@@ -142,7 +142,7 @@
142142
},
143143
"kraken2/kraken2": {
144144
"branch": "master",
145-
"git_sha": "c8e35eb2055c099720a75538d1b8adb3fb5a464c",
145+
"git_sha": "7c695e0147df1157413e06246d9b0094617d3e6b",
146146
"installed_by": ["modules"]
147147
},
148148
"minia": {
@@ -177,13 +177,13 @@
177177
},
178178
"picard/collectmultiplemetrics": {
179179
"branch": "master",
180-
"git_sha": "2f88b26e9804b99e98f7cd08e74c3f88288a3358",
180+
"git_sha": "75027bf77472b1f4fd2cdd7e46f83119dfb0f2c6",
181181
"installed_by": ["modules"]
182182
},
183183
"picard/markduplicates": {
184184
"branch": "master",
185-
"git_sha": "2f88b26e9804b99e98f7cd08e74c3f88288a3358",
186-
"installed_by": ["bam_markduplicates_picard", "modules"]
185+
"git_sha": "75027bf77472b1f4fd2cdd7e46f83119dfb0f2c6",
186+
"installed_by": ["modules", "bam_markduplicates_picard"]
187187
},
188188
"plasmidid": {
189189
"branch": "master",
@@ -266,7 +266,7 @@
266266
"nf-core": {
267267
"bam_markduplicates_picard": {
268268
"branch": "master",
269-
"git_sha": "6daac2bc63f4847e0c7cc661f4f5b043ac13faaf",
269+
"git_sha": "6f1697c121719dedde9e0537b6ed6a9cb8c13583",
270270
"installed_by": ["subworkflows"]
271271
},
272272
"bam_sort_stats_samtools": {
@@ -276,7 +276,7 @@
276276
},
277277
"bam_stats_samtools": {
278278
"branch": "master",
279-
"git_sha": "92eb5091ae5368a60cda58b3a0ced8b36d715b0f",
279+
"git_sha": "b4b7f89e7fd6d2293f0c176213f710e0bcdaf19e",
280280
"installed_by": ["bam_sort_stats_samtools", "bam_markduplicates_picard"]
281281
},
282282
"fastq_align_bowtie2": {

modules/nf-core/bcftools/norm/main.nf

Lines changed: 17 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/bcftools/norm/meta.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/kraken2/kraken2/main.nf

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/picard/collectmultiplemetrics/main.nf

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/picard/markduplicates/main.nf

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ manifest {
255255
description = """Assembly and intrahost/low-frequency variant calling for viral samples"""
256256
mainScript = 'main.nf'
257257
nextflowVersion = '!>=22.10.1'
258-
version = '2.6'
258+
version = '2.6.0'
259259
doi = 'https://doi.org/10.5281/zenodo.3901628'
260260
}
261261

subworkflows/nf-core/bam_trim_primers_ivar.nf renamed to subworkflows/local/bam_trim_primers_ivar.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44

55
include { IVAR_TRIM } from '../../modules/nf-core/ivar/trim/main'
6-
include { BAM_SORT_STATS_SAMTOOLS } from './bam_sort_stats_samtools/main'
6+
include { BAM_SORT_STATS_SAMTOOLS } from '../nf-core/bam_sort_stats_samtools/main'
77

88
workflow BAM_TRIM_PRIMERS_IVAR {
99
take:
File renamed without changes.

0 commit comments

Comments
 (0)