Skip to content

Commit

Permalink
fix: Increase sambamba run time (#1001)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivadym authored Sep 27, 2022
1 parent 48022a4 commit f357440
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BALSAMIC/config/cluster.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"n": 4
},
"sambamba_exon_depth": {
"time": "02:30:00",
"time": "04:00:00",
"n": 8
},
"sambamba_panel_depth": {
Expand Down
4 changes: 3 additions & 1 deletion BALSAMIC/snakemake_rules/quality_control/sambamba_depth.rule
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ sambamba depth region \
--regions {input.bed} \
--min-base-quality={params.base_qual} \
--filter {params.filter_string} \
--nthreads {threads} \
`echo $covStr` {input.bam} > {output};
"""

Expand Down Expand Up @@ -67,5 +68,6 @@ sambamba depth region \
--filter {params.filter_string} \
--cov-threshold {params.cov_1} --cov-threshold {params.cov_2} \
--cov-threshold {params.cov_3} --cov-threshold {params.cov_4} \
--cov-threshold {params.cov_5} {input.bam} > {output};
--cov-threshold {params.cov_5} \
--nthreads {threads} {input.bam} > {output};
"""
10 changes: 9 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
[10.0.3]
[10.0.4]
---------
Fixed:
^^^^^^

* Increase sambamba_exon_depth rule run time https://github.com/Clinical-Genomics/BALSAMIC/pull/1001

[10.0.3]
---------
Fixed:
^^^^^^

* Input VCF files for cnvkit rules, cnvkit command and container https://github.com/Clinical-Genomics/BALSAMIC/pull/995

Expand Down

0 comments on commit f357440

Please sign in to comment.