Skip to content

Commit

Permalink
Merge pull request #21 from son-ha-264/main
Browse files Browse the repository at this point in the history
Fixed a bug in Standardize script
  • Loading branch information
EBjerrum authored Nov 6, 2022
2 parents d175c61 + 62c98e3 commit 58b0226
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scikit_mol/standardizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ def transform(self, X):
if self.neutralize:
uncharger = rdMolStandardize.Uncharger()
uncharged_parent_clean_mol = uncharger.uncharge(parent_clean_mol)
else:
uncharged_parent_clean_mol = parent_clean_mol
# Add to final list
arr.append(uncharged_parent_clean_mol)

Expand Down

0 comments on commit 58b0226

Please sign in to comment.