bam_seqi

! @function @abstract Get a base on read @param s Query sequence returned by bam_get_seq() @param i The i-th position, 0-based @return 4-bit integer representing the base. /#define bam_seqi(s, i) ((s)[(i)>>1] >> ((~(i)&1)<<2) & 0xf)

extern (C) pragma(inline, true)
bam_seqi
(
ubyte* s
,
uint i
)

Meta