Skip to content

Commit

Permalink
Merge pull request #197 from OpenBioSim/fix_196
Browse files Browse the repository at this point in the history
Fix issue #196
  • Loading branch information
lohedges authored Nov 8, 2023
2 parents 4b0ba24 + 9ca43e4 commit 7b77a26
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 25 deletions.
2 changes: 1 addition & 1 deletion doc/source/tutorials/crystal_water.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protein:

And then the water:

>>> xtal_water = BSS.Parameters.tip3p(
>>> xtal_water = BSS.Parameters.ff14SB(
... xtal_water,
... water_model="tip3p",
... ensure_compatible=False
Expand Down
24 changes: 12 additions & 12 deletions python/BioSimSpace/Sandpit/Exscientia/_SireWrappers/_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -640,16 +640,15 @@ def addMolecules(self, molecules):

# Search for perturbable molecules with a velocity property.
# Only consider the lambda = 0 end state.
try:
pert_mols_with_velocities = self.search(
f"mols with property velocity0"
).molecules()
num_pert_vels = len(pert_mols_with_velocities)
except:
num_pert_vels = 0

# Compute the total number of molecules with velocities.
num_vels = num_vels + num_pert_vels
has_perturbable = False
for mol in self.getPerturbableMolecules():
# Add perturbable velocities.
if mol._sire_object.hasProperty("velocity0"):
has_perturbable = True
num_vels += 1
# Remove non-perturbable velocities to avoid double counting.
elif mol._sire_object.hasProperty("velocity"):
num_vels -= 1

# Not all molecules have velocities.
if num_vels > 0 and num_vels != self.nMolecules():
Expand All @@ -664,7 +663,7 @@ def addMolecules(self, molecules):
_warnings.warn(
"Failed to remove 'velocity' property from all molecules!"
)
if num_pert_vels > 0:
if has_perturbable:
try:
self._sire_object = _SireIO.removeProperty(
self._sire_object, "velocity0"
Expand Down Expand Up @@ -2384,7 +2383,8 @@ def _set_water_topology(self, format, is_crystal=False, property_map={}):
The format to convert to: either "AMBER" or "GROMACS".
is_crystal : bool
Whether to label as rystal waters.
Whether to label as crystal waters. This is only used when solvating
so that crystal waters aren't removed when adding ions.
property_map : dict
A dictionary that maps system "properties" to their user defined
Expand Down
24 changes: 12 additions & 12 deletions python/BioSimSpace/_SireWrappers/_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -640,16 +640,15 @@ def addMolecules(self, molecules):

# Search for perturbable molecules with a velocity property.
# Only consider the lambda = 0 end state.
try:
pert_mols_with_velocities = self.search(
f"mols with property velocity0"
).molecules()
num_pert_vels = len(pert_mols_with_velocities)
except:
num_pert_vels = 0

# Compute the total number of molecules with velocities.
num_vels = num_vels + num_pert_vels
has_perturbable = False
for mol in self.getPerturbableMolecules():
# Add perturbable velocities.
if mol._sire_object.hasProperty("velocity0"):
has_perturbable = True
num_vels += 1
# Remove non-perturbable velocities to avoid double counting.
elif mol._sire_object.hasProperty("velocity"):
num_vels -= 1

# Not all molecules have velocities.
if num_vels > 0 and num_vels != self.nMolecules():
Expand All @@ -664,7 +663,7 @@ def addMolecules(self, molecules):
_warnings.warn(
"Failed to remove 'velocity' property from all molecules!"
)
if num_pert_vels > 0:
if has_perturbable:
try:
self._sire_object = _SireIO.removeProperty(
self._sire_object, "velocity0"
Expand Down Expand Up @@ -2304,7 +2303,8 @@ def _set_water_topology(self, format, is_crystal=False, property_map={}):
The format to convert to: either "AMBER" or "GROMACS".
is_crystal : bool
Whether to label as rystal waters.
Whether to label as crystal waters. This is only used when solvating
so that crystal waters aren't removed when adding ions.
property_map : dict
A dictionary that maps system "properties" to their user defined
Expand Down
21 changes: 21 additions & 0 deletions tests/Sandpit/Exscientia/_SireWrappers/test_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,3 +473,24 @@ def test_residue_searches_rna(rna_system):
assert isinstance(nucleotides[0], BSS._SireWrappers._residue.Residue)
assert len(rna_system.getAminoAcids()) == rna_system.nAminoAcids() == 0
assert len(nucleotides) == rna_system.nNucleotides() == 29


def test_set_water_property_preserve(system):
# Make sure that unique molecular properties are preserved when swapping
# water topology.

# Make a copy of the system.
system = system.copy()

# Flag one water molecule with a unique property.
mol = system[-1]
mol._sire_object = (
mol._sire_object.edit().setProperty("test", True).molecule().commit()
)
system.updateMolecules(mol)

# Swap the water topology to GROMACS format.
system._set_water_topology("GROMACS")

# Make sure the property is preserved.
assert system[-1]._sire_object.hasProperty("test")
21 changes: 21 additions & 0 deletions tests/_SireWrappers/test_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,3 +469,24 @@ def test_residue_searches_rna(rna_system):
assert isinstance(nucleotides[0], BSS._SireWrappers._residue.Residue)
assert len(rna_system.getAminoAcids()) == rna_system.nAminoAcids() == 0
assert len(nucleotides) == rna_system.nNucleotides() == 29


def test_set_water_property_preserve(system):
# Make sure that unique molecular properties are preserved when swapping
# water topology.

# Make a copy of the system.
system = system.copy()

# Flag one water molecule with a unique property.
mol = system[-1]
mol._sire_object = (
mol._sire_object.edit().setProperty("test", True).molecule().commit()
)
system.updateMolecules(mol)

# Swap the water topology to GROMACS format.
system._set_water_topology("GROMACS")

# Make sure the property is preserved.
assert system[-1]._sire_object.hasProperty("test")

0 comments on commit 7b77a26

Please sign in to comment.