diff options
author | David Luevano Alvarado <55825613+luevano@users.noreply.github.com> | 2020-02-29 06:23:28 -0700 |
---|---|---|
committer | David Luevano Alvarado <55825613+luevano@users.noreply.github.com> | 2020-02-29 06:23:28 -0700 |
commit | d71927fc791e51bf383b88bd3d943d8e3311ee8a (patch) | |
tree | 8c3c4c3da81a9b8756a3d9b6aa7fdc9f5f160ac5 | |
parent | fe4e5afebaf7320ba5bed7f159c84bc5d1e5faec (diff) |
Rename bos to bob
-rw-r--r-- | ml_exp/compound.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ml_exp/compound.py b/ml_exp/compound.py index 4dbd8c95c..98e31532f 100644 --- a/ml_exp/compound.py +++ b/ml_exp/compound.py @@ -46,7 +46,7 @@ class Compound: self.cm = None self.ljm = None self.am = None - self.bos = None + self.bob = None if xyz is not None: self.read_xyz(xyz) @@ -122,7 +122,7 @@ class Compound: Generate the Bag of Stuff for the compound. size: compound size. """ - self.bos = bag_of_stuff(self.cm, + self.bob = bag_of_stuff(self.cm, self.atoms, size=size) |