Skip to content

Commit

Permalink
Fixed run_stoned default alphabet
Browse files Browse the repository at this point in the history
  • Loading branch information
whitead committed May 31, 2022
1 parent b98d7f4 commit a6b4e5e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Change Log
==========

v2.0.1 (2022-5-31)
------------
* Made default `run_stoned` argument use basic instead of semantically robust alphabet, as
claimed in documentation

v2.0.0 (2022-5-31)
------------
* Added surrogate model explanation method
Expand Down
2 changes: 1 addition & 1 deletion exmol/exmol.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def run_stoned(
:return: SELFIES, SMILES, and SCORES generated or SMILES and SCORES generated
"""
if alphabet is None:
alphabet = list(sf.get_semantic_robust_alphabet())
alphabet = get_basic_alphabet()
if type(alphabet) == set:
alphabet = list(alphabet)
num_mutation_ls = list(range(min_mutations, max_mutations + 1))
Expand Down
2 changes: 1 addition & 1 deletion exmol/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0"
__version__ = "2.0.1"

0 comments on commit a6b4e5e

Please sign in to comment.