Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions BALSAMIC/constants/workflow_profile/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ set-resources:
runtime: 360
bedtools_pad_bedfile:
mem_mb: min(230000, 1000 * attempt)
runtime: 20
runtime: 40
vardict_sort:
mem_mb: min(230000, 15000 * attempt)
runtime: 30
Expand Down Expand Up @@ -200,10 +200,10 @@ set-resources:
runtime: 350
mem_mb: min(230000, 40000 * attempt)
bedtools_sort_and_merge:
runtime: 20
runtime: 40
mem_mb: min(230000, 400 * attempt)
extend_short_bedregions:
runtime: 20
runtime: 40
mem_mb: min(230000, 400 * attempt)
create_coverage:
runtime: 360
Expand Down
2 changes: 1 addition & 1 deletion BALSAMIC/models/sbatchsubmitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def _build_sbatch_header(self) -> str:
f"#SBATCH --output={self.log_path}/BALSAMIC_snakemake_submit.{self.case_id}.%j.out",
f"#SBATCH --error={self.log_path}/BALSAMIC_snakemake_submit.{self.case_id}.%j.err",
"#SBATCH --ntasks=1",
"#SBATCH --mem=5G",
"#SBATCH --mem=500M",
f"#SBATCH --time={self.max_run_hours}:00:00",
f"#SBATCH --qos={self.qos}",
"#SBATCH --cpus-per-task=1",
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Added:

Changed:
^^^^^^^^
* increased runtime for a couple of small rules https://github.com/Clinical-Genomics/BALSAMIC/pull/1641
* decreased memory for headjobs to 500mb https://github.com/Clinical-Genomics/BALSAMIC/pull/1641

Removed:
^^^^^^^^
Expand Down
Loading