Represents a match between a fragment and its target.
|
__init__(self,
source,
start,
end,
qstart,
qend,
id=None,
probability=None,
rmsd=None,
tm_score=None,
score=None,
neff=None,
internal_id=None)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
bool
|
|
list
|
backbone_at(self,
qstart,
qend)
Returns:
the CA coordinates of the fragment at the specified subregion. |
source code
|
|
float
|
mda_to(self,
other,
min_overlap=5)
Returns:
the MDA (maximum deviation in torsion angles) between
self and other . |
source code
|
|
float
|
nrmsd_to(self,
other,
min_overlap=5)
Returns:
the normalized CA RMSD between self and
other . |
source code
|
|
set of int
|
overlap(self,
other)
Returns:
target positions, covered by both self and
other |
source code
|
|
float
|
rmsd_to(self,
other,
min_overlap=5)
Returns:
the CA RMSD between self and other . |
source code
|
|
list
|
|
list
|
torsion_at(self,
qstart,
qend)
Returns:
torsion angles of the fragment at the specified subregion |
source code
|
|
|
transform(self,
rotation,
translation)
Apply rotation/translation to fragment's coordinates in place |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|