summaryrefslogtreecommitdiff
path: root/ml_exp/__init__.py
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-02-23 22:06:30 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-02-23 22:06:30 -0700
commitb300e365d0886695b0d0220aad1be6cb38cf3c36 (patch)
tree38440ade31f5412b238ef5a6809d4f5ff01ff72e /ml_exp/__init__.py
parentb82b90ec609ee80629f1e7f4b8a03cbbb53a0f21 (diff)
Add bos to compound, and bugfix to bos
Diffstat (limited to 'ml_exp/__init__.py')
-rw-r--r--ml_exp/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/ml_exp/__init__.py b/ml_exp/__init__.py
index d81f0999a..dcb10a1df 100644
--- a/ml_exp/__init__.py
+++ b/ml_exp/__init__.py
@@ -22,7 +22,7 @@ SOFTWARE.
"""
from ml_exp.compound import Compound
from ml_exp.representations import coulomb_matrix, lennard_jones_matrix,\
- first_neighbor_matrix, adjacency_matrix
+ first_neighbor_matrix, adjacency_matrix, check_bond, bag_of_stuff
# If somebody does "from package import *", this is what they will
# be able to access:
@@ -30,4 +30,6 @@ __all__ = ['Compound',
'coulomb_matrix',
'lennard_jones_matrix',
'first_neighbor_matrix',
- 'adjacency_matrix']
+ 'adjacency_matrix',
+ 'check_bond',
+ 'bag_of_stuff']