Skip to content

Commit 38817f9

Browse files
committed
added chloroform to guaranteed smiles
1 parent c45a231 commit 38817f9

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

geometry.py

+8
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,14 @@ def from_string(cls, name, form="smiles", strict_use_rdkit=False):
194194
Atom("O", coords=[0.0, 0.0, 0.0], name="2"),
195195
Atom("H", coords=[0.0, -0.7572, -0.4692], name="3"),
196196
])
197+
elif name == "ClC(Cl)Cl":
198+
return cls([
199+
Atom("Cl", coords=[-0.59020, 1.58610, -0.40730], name="1"),
200+
Atom("C", coords=[ 0.00140, -0.00160, 0.12250], name="2"),
201+
Atom("Cl", coords=[-1.05120, -1.30360, -0.49820], name="3"),
202+
Atom("Cl", coords=[ 1.66160, -0.20470, -0.44580], name="4"),
203+
Atom("H", coords=[-0.02170, -0.07610, 1.22880], name="5"),
204+
])
197205

198206
def get_cactus_sd(smiles):
199207
if DEFAULT_CONFIG["DEFAULT"].getboolean("local_only"):

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# For a discussion on single-sourcing the version across setup.py and the
5353
# project code, see
5454
# https://packaging.python.org/en/latest/single_source_version.html
55-
version="1.0b19", # Required
55+
version="1.0", # Required
5656
# This is a one-line description or tagline of what your project does. This
5757
# corresponds to the "Summary" metadata field:
5858
# https://packaging.python.org/specifications/core-metadata/#summary

0 commit comments

Comments
 (0)