Skip to content

Commit

Permalink
Updating BBOMol so that a dictionary that maps a shingle SMILES with …
Browse files Browse the repository at this point in the history
…an identifier used as index in the output representation can be given for the shingles descriptor.
  • Loading branch information
jleguy committed Dec 21, 2021
1 parent 6a907c6 commit 8c76700
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bbomol/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,8 @@ def _parse_descriptor(surrogate_explicit_parameters, parallelization_explicit_pa

desc = ShinglesVectDesc(lvl=surrogate_explicit_parameters["descriptor"]["lvl"],
vect_size=surrogate_explicit_parameters["descriptor"]["vect_size"],
count=surrogate_explicit_parameters["descriptor"]["count"])
count=surrogate_explicit_parameters["descriptor"]["count"],
external_desc_id_dict=surrogate_explicit_parameters["descriptor"]["external_dict"])

elif surrogate_explicit_parameters["descriptor"]["type"] == "SOAP":

Expand Down

0 comments on commit 8c76700

Please sign in to comment.