Files
tools/calc_utils/futils/__init__.py
2026-01-11 11:37:11 +08:00

19 lines
378 B
Python

# from .patch_gaussian import GSUB
from .rdkit2ase import MolToAtoms,AtomsToMol
from .rdkit_utils import draw2D,draw3D
from rdkit.Chem import AllChem
from rdkit import Chem
from ase import atoms
# import patch_gaussian as gaussian
__all__ = [
# 'GSUB',
'MolToAtoms',
'AtomsToMol',
'draw2D',
'draw3D',
'Chem',
'AllChem',
'atoms',
'gaussian'
]