Skip to content

Commit

Permalink
MmcifChainFiltered takes now pathlib, not string
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaMolod committed Nov 15, 2023
1 parent 54dd2bd commit aa8beb9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/test_remove_clashes_low_plddt.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
import os
import alphapulldown
from alphapulldown.remove_clashes_low_plddt import MmcifChainFiltered
from pathlib import Path

alphapulldown_dir = os.path.dirname(alphapulldown.__file__)
cif_file = os.path.join(alphapulldown_dir, '..',
'test', 'test_data','true_multimer','cage_BC_AF.cif')
alphapulldown_dir = Path(alphapulldown_dir)
cif_file = alphapulldown_dir / '..' / 'test' / 'test_data' / 'true_multimer' / 'cage_BC_AF.cif'


def test_init():
Expand Down

0 comments on commit aa8beb9

Please sign in to comment.