Skip to content

Commit

Permalink
Fixed molprobity memory issue
Browse files Browse the repository at this point in the history
  • Loading branch information
aozalevsky committed Dec 22, 2023
1 parent c608e00 commit 24bc1bf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ihm_validation/molprobity.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,10 @@ def run_molprobity(self, d: dict):

with open(f_name, 'w+') as f:
run(['molprobity.molprobity', self._tempcif,
"disable_uc_volume_vs_n_atoms_check=True",
# "disable_uc_volume_vs_n_atoms_check=True",
# This is a legacy option and causes extremely
# large memory consumption with recent
# molprobity versions on PDB-Dev entries
"coot=False"],
stdout=f,
cwd=self.cache)
Expand Down

0 comments on commit 24bc1bf

Please sign in to comment.