Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Bharath Ramsundar authored and Bharath Ramsundar committed Jul 11, 2020
1 parent 2beebfa commit b66503d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deepchem/feat/graph_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -690,9 +690,9 @@ def __init__(self, graph_distance=True, explicit_H=False,
# If uses use_chirality
self.use_chirality = use_chirality
if self.use_chirality:
self.bt_len = bond_fdim_base + len(possible_bond_stereo)
self.bt_len = GraphConvConstants.bond_fdim_base + len(possible_bond_stereo)
else:
self.bt_len = bond_fdim_base
self.bt_len = GraphConvConstants.bond_fdim_base

def _featurize(self, mol):
"""Encodes mol as a WeaveMol object."""
Expand Down

0 comments on commit b66503d

Please sign in to comment.