Skip to content

Commit 01fce23

Browse files
authored
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 aefa0cb commit 01fce23

File tree

11 files changed

+14
-12
lines changed

11 files changed

+14
-12
lines changed

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)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ process BOLT_SMLV_SOMATIC_RESCUE {
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), path(smlv_tbi), path(sage_smlv_vcf), path(sage_smlv_tbi)

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

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

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

77
input:
88
tuple val(meta), path(sv_vcf), path(cnv_tsv)

0 commit comments

Comments
 (0)