Skip to content

Commit

Permalink
fix vardict memory error
Browse files Browse the repository at this point in the history
  • Loading branch information
khurrammaqbool committed Oct 21, 2024
1 parent 061c4bb commit fe210bf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ rule vardict_tumor_only:
export PERL5LIB=;
export TMPDIR={params.tmpdir};
export VAR_DICT_OPTS='\"-Djava.io.tmpdir={params.tmpdir}\" \"-Xmx45G\"';
export _JAVA_OPTIONS="-Djava.io.tmpdir={params.tmpdir}";
export VAR_DICT_OPTS='\"-Xms45G\" \"-Xmx90G\"';
vardict-java -I 600 \
-G {input.fa} \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ rule vardict_tumor_normal:
shell:
"""
export TMPDIR={params.tmpdir};
export VAR_DICT_OPTS='\"-Djava.io.tmpdir={params.tmpdir}\" \"-Xmx90G\"';
export _JAVA_OPTIONS="-Djava.io.tmpdir={params.tmpdir}";
export VAR_DICT_OPTS='\"-Xms45G\" \"-Xmx90G\"';
vardict-java -I 600 -G {input.fa} -f {params.af} -N {params.case_name} \
-b \"{input.bamT}|{input.bamN}\" \
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ Fixed:
* CNVkit incorrect version in the documentation https://github.com/Clinical-Genomics/BALSAMIC/pull/1457
* MSIsensor-pro container and updated msisensor to version 1.3.0 https://github.com/Clinical-Genomics/BALSAMIC/pull/1486
* Somalier container and updated somalier to version 0.2.19 https://github.com/Clinical-Genomics/BALSAMIC/pull/1487
* Vardict memory and tmpdir allocation https://github.com/Clinical-Genomics/BALSAMIC/pull/

[15.0.1]
--------
Expand Down

0 comments on commit fe210bf

Please sign in to comment.