hexviz / tests /test_attention.py
aksell's picture
Add get_structure
f8402f9
raw
history blame
251 Bytes
from Bio.PDB.Structure import Structure
from protention.attention import get_structure
def test_get_structure():
pdb_id = "1AKE"
structure = get_structure(pdb_id)
assert structure is not None
assert isinstance(structure, Structure)