Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve error message #737

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/biotite/structure/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import collections.abc
import warnings
import numpy as np
from biotite.structure.atoms import AtomArrayStack, coord
from biotite.structure.atoms import AtomArray, AtomArrayStack, coord
from biotite.structure.celllist import CellList
from biotite.structure.chains import get_chain_count, get_chain_positions
from biotite.structure.geometry import index_distance
Expand Down Expand Up @@ -397,6 +397,11 @@ def lddt(
reference, atom_mask, partner_mask, inclusion_radius, exclude_same_residue
)
if symmetric:
if not isinstance(subject, AtomArray):
raise TypeError(
"Expected 'AtomArray' as subject, as symmetric lDDT is enabled, "
f"but got '{type(subject).__name__}'"
)
subject_contacts = _find_contacts(
subject, atom_mask, partner_mask, inclusion_radius, exclude_same_residue
)
Expand Down
Loading