hts_itr_t

@brief File iterator that can handle multiple target regions. This structure should be considered opaque by end users. It does both the stepping inside the file and the filtering of alignments. It can operate in single or multi-region mode, and depending on this, it uses different fields.

read_rest (1) - read everything from the current offset, without filtering finished (1) - no more iterations is_cram (1) - current file has CRAM format nocoor (1) - read all unmapped reads

multi (1) - multi-region moode reg_list - List of target regions n_reg - Size of the above list curr_reg - List index of the current region of search curr_intv - Interval index inside the current region; points to a (beg, end) end - Used for CRAM files, to preserve the max end coordinate

multi (0) - single-region mode tid - Reference id of the target region beg - Start position of the target region end - End position of the target region

Common fields: off - List of file offsets computed from the index n_off - Size of the above list i - List index of the current file offset curr_off - File offset for the next file read curr_tid - Reference id of the current alignment curr_beg - Start position of the current alignment curr_end - End position of the current alignment nocoor_off - File offset where the unmapped reads start

readrec - File specific function that reads an alignment seek - File specific function for changing the file offset tell - File specific function for indicating the file offset

Members

Structs

Bins
struct Bins
Undocumented in source.

Variables

beg
hts_pos_t beg;
Undocumented in source.
bins
Bins bins;
Undocumented in source.
curr_beg
hts_pos_t curr_beg;
Undocumented in source.
curr_end
hts_pos_t curr_end;
Undocumented in source.
curr_intv
int curr_intv;
Undocumented in source.
curr_off
ulong curr_off;
Undocumented in source.
curr_reg
int curr_reg;
Undocumented in source.
curr_tid
int curr_tid;
Undocumented in source.
end
hts_pos_t end;
Undocumented in source.
i
int i;
Undocumented in source.
n_off
int n_off;
Undocumented in source.
n_reg
int n_reg;
Undocumented in source.
nocoor_off
ulong nocoor_off;
Undocumented in source.
off
hts_pair64_max_t* off;
Undocumented in source.
readrec
int function() readrec;
Undocumented in source.
reg_list
hts_reglist_t* reg_list;
Undocumented in source.
seek
int function() seek;
Undocumented in source.
tell
long function() tell;
Undocumented in source.
tid
int tid;
Undocumented in source.

Meta