Skip to content

Commit

Permalink
Merge pull request #224 from OpenBioSim/fix_223
Browse files Browse the repository at this point in the history
Make sure disulphide search is converted to a SelectorBond.
  • Loading branch information
lohedges authored Dec 12, 2023
2 parents 7869803 + bb6b27b commit d86dc9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/BioSimSpace/Parameters/_Protocol/_amber.py
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ def _get_disulphide_bonds(

# Try searching for disulphide bonds.
try:
disulphides = query(mol, property_map)
disulphides = query(mol, property_map).bonds()
except:
disulphides = []

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ def _get_disulphide_bonds(

# Try searching for disulphide bonds.
try:
disulphides = query(mol, property_map)
disulphides = query(mol, property_map).bonds()
except:
disulphides = []

Expand Down

0 comments on commit d86dc9f

Please sign in to comment.