Details
Description
A sequence can declare a length (end position) greater than the subsequence e.g.
>seq1/1-10
L-RF-GQ--
Prior to the introduction of SequenceCursor, findIndex(int resNo) would return the last column position (gapped or not) if resNo is beyond the last residue position:
findIndex(6) = 9
With SequenceCursor, we get instead
findIndex(6) = 10
>seq1/1-10
L-RF-GQ--
Prior to the introduction of SequenceCursor, findIndex(int resNo) would return the last column position (gapped or not) if resNo is beyond the last residue position:
findIndex(6) = 9
With SequenceCursor, we get instead
findIndex(6) = 10
Attachments
Issue Links
- related with
-
JAL-2526 SequenceCursor for more efficient Sequence.findPosition, findIndex
- Closed