Skip to content

Commit

Permalink
Merge pull request #23 from molssi-seamm/dev
Browse files Browse the repository at this point in the history
Bugfix: incorrectly creating configurations
  • Loading branch information
seamm authored Nov 10, 2023
2 parents 1554482 + 5b5b423 commit 644f09f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
History
=======

2023.11.10 -- Bugfix: New configurations created incorrectly
* New configurations made from other systems could remove the atoms in those
systems.

2023.11.9.1 -- Removed using structure names when perceiving type
* Using structure names is too dangerous to use by perceiving if text is a name of
SMILES and there is no easy test for valid SMILES. So change to only using names
Expand Down
2 changes: 1 addition & 1 deletion from_smiles_step/from_smiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def run(self):
notation = P["notation"]

# Get the system
system, configuration = self.get_system_configuration(P)
system, configuration = self.get_system_configuration(P, same_as=None)

# Create the structure in the given configuration
text = P["smiles string"]
Expand Down

0 comments on commit 644f09f

Please sign in to comment.