Skip to content

Commit 3abde8d

Browse files
authored
Release/0.6.2 (#27)
* Bump version: 0.6.1 → 0.6.2 * update CHANGELOG * change make hrd facultative for cancer report process (#26) * change make hrd facultative for cancer report process * add absolut path * bump bolt version * bump bolt version v0.2.16 -> 0.2.17
1 parent 7c92315 commit 3abde8d

File tree

14 files changed

+29
-14
lines changed

14 files changed

+29
-14
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.6.1
2+
current_version = 0.6.2
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>[a-z0-9+]+)

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,19 @@ Initial release of umccr/sash, created with the [nf-core](https://nf-co.re/) tem
1515

1616
### `Deprecated`
1717

18+
## [0.6.2] - 2025-10-1
19+
20+
### Changed
21+
22+
- Dragen HRD file facultatif
23+
24+
### Dependencies
25+
26+
| Tool | Old | New |
27+
|------|-----|-----|
28+
| bolt | 0.2.15 | 0.2.17 |
29+
| gpgr | 2.2.0 | 2.2.1 |
30+
1831
## [0.6.1] - 2025-09-16
1932

2033
### Added

modules/local/bolt/other/cancer_report/main.nf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ process BOLT_OTHER_CANCER_REPORT {
22
tag "${meta.id}"
33
label 'process_low'
44

5-
container 'ghcr.io/umccr/bolt:0.2.15-gpgr'
5+
container 'ghcr.io/umccr/bolt:0.2.17-gpgr'
66

77
input:
88
tuple val(meta), path(smlv_somatic_vcf), path(smlv_somatic_bcftools_stats), path(smlv_somatic_counts_process), path(sv_somatic_tsv), path(sv_somatic_vcf), path(cnv_somatic_tsv), path(af_global), path(af_keygenes), path(purple_baf_plot), path(purple_dir), path(virusbreakend_dir), path(dragen_hrd)
@@ -19,6 +19,8 @@ process BOLT_OTHER_CANCER_REPORT {
1919

2020
script:
2121

22+
def dragen_hrd_arg = dragen_hrd ? "--dragen_hrd_fp \$(pwd)/${dragen_hrd}" : ''
23+
2224
"""
2325
# NOTE(SW): gpgr requires aboslute paths
2426
@@ -42,7 +44,7 @@ process BOLT_OTHER_CANCER_REPORT {
4244
--purple_dir \$(pwd)/${purple_dir} \\
4345
--virusbreakend_dir \$(pwd)/${virusbreakend_dir} \\
4446
\\
45-
--dragen_hrd_fp \$(pwd)/${dragen_hrd} \\
47+
${dragen_hrd_arg} \\
4648
\\
4749
--cancer_genes_fp \$(pwd)/${somatic_driver_panel} \\
4850
--oncokb_genes_fp \$(pwd)/${oncokb_genes} \\

modules/local/bolt/other/multiqc_report/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ process BOLT_OTHER_MULTIQC_REPORT {
22
tag "${meta.id}"
33
label 'process_low'
44

5-
container 'ghcr.io/umccr/bolt:0.2.15-multiqc'
5+
container 'ghcr.io/umccr/bolt:0.2.17-multiqc'
66

77
input:
88
tuple val(meta), path(input_files)

modules/local/bolt/other/purple_baf_plot/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ process BOLT_OTHER_PURPLE_BAF_PLOT {
22
tag "${meta.id}"
33
label 'process_low'
44

5-
container 'ghcr.io/umccr/bolt:0.2.15-circos'
5+
container 'ghcr.io/umccr/bolt:0.2.17-circos'
66

77
input:
88
tuple val(meta), path(purple_dir)

modules/local/bolt/smlv_germline/prepare/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ process BOLT_SMLV_GERMLINE_PREPARE {
22
tag "${meta.id}"
33
label 'process_low'
44

5-
container 'ghcr.io/umccr/bolt:0.2.15'
5+
container 'ghcr.io/umccr/bolt:0.2.17'
66

77
input:
88
tuple val(meta), path(smlv_vcf)

modules/local/bolt/smlv_germline/report/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ process BOLT_SMLV_GERMLINE_REPORT {
22
tag "${meta.id}"
33
label 'process_low'
44

5-
container 'ghcr.io/umccr/bolt:0.2.15-pcgr'
5+
container 'ghcr.io/umccr/bolt:0.2.17-pcgr'
66

77
input:
88
tuple val(meta), path(smlv_vcf), path(smlv_unfiltered_vcf)

modules/local/bolt/smlv_somatic/annotate/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ process BOLT_SMLV_SOMATIC_ANNOTATE {
22
tag "${meta.id}"
33
label 'process_low'
44

5-
container 'ghcr.io/umccr/bolt:0.2.15-pcgr'
5+
container 'ghcr.io/umccr/bolt:0.2.17-pcgr'
66

77
input:
88
tuple val(meta), path(smlv_vcf)

modules/local/bolt/smlv_somatic/filter/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ process BOLT_SMLV_SOMATIC_FILTER {
22
tag "${meta.id}"
33
label 'process_low'
44

5-
container 'ghcr.io/umccr/bolt:0.2.15'
5+
container 'ghcr.io/umccr/bolt:0.2.17'
66

77
input:
88
tuple val(meta), path(smlv_vcf)

modules/local/bolt/smlv_somatic/report/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ process BOLT_SMLV_SOMATIC_REPORT {
22
tag "${meta.id}"
33
label 'process_low'
44

5-
container 'ghcr.io/umccr/bolt:0.2.15-pcgr'
5+
container 'ghcr.io/umccr/bolt:0.2.17-pcgr'
66

77
input:
88
tuple val(meta), path(smlv_vcf), path(smlv_filters_vcf), path(smlv_dragen_vcf), path(purple_purity)

0 commit comments

Comments
 (0)