Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove openbabel #40

Merged
merged 2 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions isicle/adducts.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@
import pickle
import re

import rdkit.Chem.rdchem as rdc
from rdkit import Chem

import isicle
from isicle.conformers import ConformationalEnsemble
from isicle.interfaces import WrapperInterface
from isicle.md import md
from isicle.utils import safelist
Expand Down
1 change: 0 additions & 1 deletion isicle/conformers.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import pandas as pd
from statsmodels.stats.weightstats import DescrStatsW

from isicle import io
from isicle.geometry import Geometry
from isicle.utils import TypedList, safelist

Expand Down
3 changes: 0 additions & 3 deletions isicle/geometry.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import os

import numpy as np
from openbabel import pybel
from rdkit import Chem
from rdkit.Chem.MolStandardize import rdMolStandardize
from rdkit.Chem.SaltRemover import SaltRemover
Expand Down
6 changes: 4 additions & 2 deletions isicle/io.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import os
import pickle
import joblib
from io import StringIO

import isicle
import joblib
import pandas as pd
from rdkit import Chem
from rdkit.Chem import rdDetermineBonds

import isicle


def _load_text(path: str):
"""
Load text from file.
Expand Down
Loading
Loading