Skip to content

Commit

Permalink
update conformer.py (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
liuzan-info authored Jan 4, 2024
1 parent b3227e4 commit 6066381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unimol_tools/unimol_tools/data/conformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def single_process(self, smiles):
"""
if self.method == 'rdkit_random':
atoms, coordinates = inner_smi2coords(smiles, seed=self.seed, mode=self.mode, remove_hs=self.remove_hs)
return coords2unimol(atoms, coordinates, self.dictionary, self.max_atoms)
return coords2unimol(atoms, coordinates, self.dictionary, self.max_atoms, remove_hs=self.remove_hs)
else:
raise ValueError('Unknown conformer generation method: {}'.format(self.method))

Expand Down

0 comments on commit 6066381

Please sign in to comment.