Represents a single HHsearch hit.
|
__init__(self,
rank,
id,
start,
end,
qstart,
qend,
probability,
qlength)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
|
|
|
|
|
bool
|
equals(self,
other)
Return True if self is completely identical to
other (same id, same start and end positions). |
source code
|
|
bool
|
includes(self,
other,
tolerance=1)
Return True if other overlaps with self ,
that means other is fully or partially included in
self when aligned over the query. |
source code
|
|
bool
|
surpasses(self,
other)
Return True if self is a superior to other
in terms of length and probability. |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|