Skip to content

Commit

Permalink
removed superfluous imports
Browse files Browse the repository at this point in the history
  • Loading branch information
orbeckst committed Jun 30, 2023
1 parent 6cc8cd7 commit 02c68be
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions mdpow/tests/test_automated_dihedral_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
import numpy as np
import pandas as pd

import rdkit
from rdkit import Chem

import seaborn

from numpy.testing import assert_almost_equal
Expand All @@ -22,7 +19,7 @@

import py.path

from ..workflows import dihedrals
from mdpow.workflows import dihedrals

from pkg_resources import resource_filename

Expand Down Expand Up @@ -76,7 +73,7 @@ def dihedral_data(self, SM25_tmp_dir, atom_indices):
(1, 2, 3, 4),(1, 12, 13, 14),(2, 3, 4, 5),(2, 3, 4, 9),
(2, 1, 12, 13),(3, 2, 1, 12),(5, 4, 3, 11),(5, 4, 3, 10),
(9, 4, 3, 11),(9, 4, 3, 10),(12, 13, 14, 15),(12, 13, 14, 19))

# tuple-tuples of dihedral atom group indices
# collected using alternate SMARTS input (explicitly defined)
# see: fixture - atom_indices().atom_group_indices_alt
Expand Down Expand Up @@ -124,7 +121,7 @@ def dihedral_data(self, SM25_tmp_dir, atom_indices):
# results included in 'df_aug'
ADG_C13141520_mean = 91.71943996962284
ADG_C13141520_var = 0.8773028474908289

def test_build_universe(self, SM25_tmp_dir):
u = dihedrals.build_universe(dirname=SM25_tmp_dir)
solute = u.select_atoms('resname UNK')
Expand Down

0 comments on commit 02c68be

Please sign in to comment.