Skip to content

Commit

Permalink
Merge pull request #40 from pnnl/remove-openbabel
Browse files Browse the repository at this point in the history
Remove openbabel and other unused dependencies
  • Loading branch information
smcolby authored Jul 23, 2024
2 parents 0699a62 + 5c3c9d0 commit e11efc5
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 658 deletions.
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

0 comments on commit e11efc5

Please sign in to comment.