Skip to content
Snippets Groups Projects
Verified Commit 42fb612c authored by Xavier Robin's avatar Xavier Robin
Browse files

Specify public interface in scoring

This avoids clashes between lDDTScorer classes in ost.mol.alg
and ost.mol.alg.lddt.
parent 49d7ba0e
Branches
Tags
No related merge requests found
...@@ -2490,3 +2490,6 @@ class Scorer: ...@@ -2490,3 +2490,6 @@ class Scorer:
self._usalign_mapping = dict() self._usalign_mapping = dict()
for a,b in zip(res.ent1_mapped_chains, res.ent2_mapped_chains): for a,b in zip(res.ent1_mapped_chains, res.ent2_mapped_chains):
self._usalign_mapping[b] = a self._usalign_mapping[b] = a
# specify public interface
__all__ = ('lDDTBSScorer', 'Scorer',)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment