Skip to content

Commit 4bd2948

Browse files
Merge pull request #2137 from nf-core/dev
2 parents e9f1750 + d00bf06 commit 4bd2948

File tree

7 files changed

+157
-115
lines changed

7 files changed

+157
-115
lines changed

.nf-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ template:
2323
name: sarek
2424
org: nf-core
2525
outdir: .
26-
version: 3.8.0
26+
version: 3.8.1

CHANGELOG.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,40 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.8.1](https://github.com/nf-core/sarek/releases/tag/3.8.1) - Laitaure
9+
10+
### Added
11+
12+
### Changed
13+
14+
### Fixed
15+
16+
- [#2128](https://github.com/nf-core/sarek/pull/2128) - Fix `bcftools concat` failing on Strelka somatic VCFs with non-contiguous chromosome blocks by adding `--allow-overlaps`
17+
18+
### Removed
19+
20+
### Dependencies
21+
22+
| Dependency | Old version | New version |
23+
| ---------- | ----------- | ----------- |
24+
25+
### Parameters
26+
27+
| Params | status |
28+
| ------ | ------ |
29+
30+
### Developer section
31+
32+
#### Added
33+
34+
#### Changed
35+
36+
- [#2134](https://github.com/nf-core/sarek/pull/2134) - Back to dev (3.9.0dev)
37+
38+
#### Fixed
39+
40+
#### Removed
41+
842
## [3.8.0](https://github.com/nf-core/sarek/releases/tag/3.8.0) - Sitojaure
943

1044
A mountain cabin near the Sami settlement between Saltoluokta and Kvikkjokk.
@@ -30,6 +64,7 @@ A mountain cabin near the Sami settlement between Saltoluokta and Kvikkjokk.
3064
- [#2099](https://github.com/nf-core/sarek/pull/2099) - Remove deprecated `msisensor2_scan` parameter from schema and igenomes config to fix `nf-core pipelines schema build` validation error
3165
- [#2100](https://github.com/nf-core/sarek/pull/2100) - Add missing citations for Condel, Mastermind, goleft indexcov, NGSCheckMate, SPRING, and vcflib to CITATIONS.md
3266
- [#2109](https://github.com/nf-core/sarek/pull/2109) - Fix consensus calling to capture all variants from all callers by using `sites.txt` output; adds `CALLERS` and `NCALLERS` INFO fields to consensus VCF
67+
- [#2113](https://github.com/nf-core/sarek/pull/2113) - Fix regex patterns for `dbnsfp_tbi`, `spliceai_snv`, and `spliceai_snv_tbi` parameter validation
3368

3469
### Removed
3570

@@ -193,7 +228,6 @@ This patch release includes a bump to Nextflow 25.04.8.
193228

194229
### Fixed
195230

196-
- [#2050](https://github.com/nf-core/sarek/issues/2050) - Fix regex patterns for `dbnsfp_tbi`, `spliceai_snv`, and `spliceai_snv_tbi` parameter validation
197231
- [2029](https://github.com/nf-core/sarek/pull/2029) - Correct intervals channel for parabricks
198232

199233
### Removed

assets/multiqc_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ custom_logo_url: https://github.com/nf-core/sarek/
33
custom_logo_title: "nf-core/sarek"
44

55
report_comment: >
6-
This report has been generated by the <a href="https://github.com/nf-core/sarek/releases/tag/3.8.0" target="_blank">nf-core/sarek</a> analysis pipeline. For information about how to interpret these results, please see the <a href="https://nf-co.re/sarek/3.8.0/docs/output" target="_blank">documentation</a>.
6+
This report has been generated by the <a href="https://github.com/nf-core/sarek/releases/tag/3.8.1" target="_blank">nf-core/sarek</a> analysis pipeline. For information about how to interpret these results, please see the <a href="https://nf-co.re/sarek/3.8.1/docs/output" target="_blank">documentation</a>.
77
report_section_order:
88
"nf-core-sarek-methods-description":
99
order: -1000

conf/modules/post_variant_calling.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ process {
5959
}
6060

6161
withName: 'NFCORE_SAREK:SAREK:POST_VARIANTCALLING:CONSENSUS:BCFTOOLS_CONCAT' {
62-
ext.args = { "--output-type z --write-index=tbi" }
62+
ext.args = { "--output-type z --write-index=tbi --allow-overlaps" }
6363
ext.prefix = { "${meta.id}.strelka" }
6464
publishDir = [ enabled: false ]
6565
}

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ manifest {
723723
mainScript = 'main.nf'
724724
defaultBranch = 'master'
725725
nextflowVersion = '!>=25.10.2'
726-
version = '3.8.0'
726+
version = '3.8.1'
727727
doi = '10.12688/f1000research.16665.2, 10.1093/nargab/lqae031, 10.5281/zenodo.3476425'
728728
}
729729

0 commit comments

Comments
 (0)