Skip to content

Commit

Permalink
prepare release 0.0.3 fix version synrbl
Browse files Browse the repository at this point in the history
  • Loading branch information
TieuLongPhan committed Oct 4, 2024
1 parent 531e316 commit 8e9aca0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ build-backend = "hatchling.build"

[project]
name = "syntemp"
version = "0.0.2"
version = "0.0.3"
authors = [
{name="Tieu Long Phan", email="tieu@bioinf.uni-leipzig.de"}
]
description = "Test."
description = "Graph-based reaction templates extraction"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
Expand All @@ -29,10 +29,9 @@ dependencies = [
"torchdata==0.7.1",
"rdkit==2023.9.5",
"networkx==3.3",
"fgutils==0.0.17",
"seaborn==0.13.2",
"joblib==1.3.2",
"synrbl==0.0.23",
"synrbl>=0.0.24",
]

[project.urls]
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ chytorch-rxnmap==1.4
torchdata==0.7.1
rdkit==2023.9.5
networkx==3.3
fgutils==0.0.17
seaborn==0.13.2
joblib==1.3.2
synrbl==0.0.23
synrbl>=0.0.24
2 changes: 1 addition & 1 deletion syntemp/SynChemistry/tautomerize.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def fix_smiles(smiles: str) -> str:
Returns:
- str: Canonical SMILES string of the standardized molecule.
"""
query = FGQuery(use_smiles=True)
query = FGQuery()
fg = query.get(smiles)
for item in fg:
if "hemiketal" in item:
Expand Down

0 comments on commit 8e9aca0

Please sign in to comment.