Represents all cigar ops as a friendlier alternative to BAM_C htslib enums
Convert single char representing a CIGAR Op to Op union
return Cigar struct for a given CIGAR string (e.g. from SAM line)
True iff operation is one of 'S', 'H'
True iff operation is one of M, =, X
True iff operation is one of M, =, X, I, S
True iff operation is one of M, =, X, D, N
string to aid in conversion from CigarOp to string
Coordinate pair representing aligned query and reference positions, and the CIGAR op at or effecting their alignment.
Iterator yielding all AlignedCoordinate pairs for a given CIGAR string
Represents a CIGAR string as an array of CigarOps.
Range-based iteration of a Cigar string Returns a range of Ops that is the length of all op lengths e.g. if the Cigar is 4M5D2I4M CigarItr will return a range of MMMMDDDDDIIMMMM Range is of the Ops enum not chars
Represents a singular cigar operation as a uint
This module simplifies working with CIGAR strings/ops from SAM/BAM/CRAM alignment records.