File tree Expand file tree Collapse file tree 4 files changed +276
-105
lines changed Expand file tree Collapse file tree 4 files changed +276
-105
lines changed Original file line number Diff line number Diff line change @@ -42,9 +42,13 @@ cdef class AlignedSegment:
42
42
43
43
# caching of array properties for quick access
44
44
cdef object cache_query_qualities
45
+ cdef object cache_query_qualities_str
45
46
cdef object cache_query_alignment_qualities
47
+ cdef object cache_query_alignment_qualities_str
48
+ cdef void _clear_cached_query_qualities(self )
46
49
cdef object cache_query_sequence
47
50
cdef object cache_query_alignment_sequence
51
+ cdef void _clear_cached_query_sequences(self )
48
52
49
53
# add an alignment tag with value to the AlignedSegment
50
54
# an existing tag of the same name will be replaced.
Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ class AlignedSegment:
83
83
template_length : int
84
84
query_sequence : Optional [str ]
85
85
query_qualities : Optional [array ]
86
+ query_qualities_str : Optional [str ]
86
87
bin : int
87
88
is_paired : bool
88
89
is_proper_pair : bool
@@ -121,6 +122,8 @@ class AlignedSegment:
121
122
@property
122
123
def query_alignment_qualities (self ) -> Optional [array ]: ...
123
124
@property
125
+ def query_alignment_qualities_str (self ) -> Optional [str ]: ...
126
+ @property
124
127
def query_alignment_start (self ) -> int : ...
125
128
@property
126
129
def query_alignment_end (self ) -> int : ...
You can’t perform that action at this time.
0 commit comments