Spaces:

File size: 251 Bytes
f8402f9
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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)