Skip to content

Commit

Permalink
Merge pull request #214 from dpryan79/master
Browse files Browse the repository at this point in the history
get_tags() should return the tag type as a character, not an integer
  • Loading branch information
AndreasHeger committed Feb 1, 2016
2 parents 615d85a + a72ace8 commit 843f2ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysam/calignedsegment.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1852,7 +1852,7 @@ cdef class AlignedSegment:
s += 1

if with_value_type:
result.append((charptr_to_str(auxtag), value, auxtype))
result.append((charptr_to_str(auxtag), value, chr(auxtype)))
else:
result.append((charptr_to_str(auxtag), value))

Expand Down

0 comments on commit 843f2ce

Please sign in to comment.