def end(self): """ Locus object referring to the end of the interval (exclusive). :rtype: :class:`.Locus` """ return Locus._from_java(self._jrep.end())
def start(self): """ Locus object referring to the start of the interval (inclusive). :rtype: :class:`.Locus` """ return Locus._from_java(self._jrep.start())
def _convert_to_py(self, annotation): if annotation: return Locus._from_java(annotation) else: return annotation
def _init_from_java(self, jrep): self._jrep = jrep self._start = Locus._from_java(self._jrep.start())