Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
Internal helper function used by tbx_itr_next() defined in hts.c -- do not use directly
advance tabix iterator
destroy/dealloc tabix data
The index struct returned by a successful call should be freed via tbx_destroy() when it is no longer needed.
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
The index struct returned by a successful call should be freed via tbx_destroy() when it is no longer needed.
@param fn Name of the data file corresponding to the index
@param fn Name of the data file corresponding to the index @param fnidx Name of the indexed file @return The index, or NULL if an error occurred
@param fn Name of the data file corresponding to the index @param fnidx Name of the indexed file @param flags Flags to alter behaviour (see description) @return The index, or NULL if an error occurred
advance tabix iterator
tabix query by integer based tid(contig)/start/end
tabix query by string "chr:start-end"
contig name to integer id
Called by tabix iterator to read the next record
return C-style array of sequence names (NB: free the array but not the values)
prebaked TABIX config data for GFF3, BED, PSL table, SAM, VCF
prebaked TABIX config data for GFF3, BED, PSL table, SAM, VCF
prebaked TABIX config data for GFF3, BED, PSL table, SAM, VCF
prebaked TABIX config data for GFF3, BED, PSL table, SAM, VCF
prebaked TABIX config data for GFF3, BED, PSL table, SAM, VCF
tabix config
tabix data
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
@file htslib/tbx.h Tabix API functions.
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
htslib-1.9 tbx.h as D module
Changes include: Removed if(n)defs Change numeric #defines to enum int Changed ^typedef struct {...} <name>$ to ^struct <name> {...}$ extern const to __gshared made #define function macros into inline functions (tbx_itr* -> hts_itr*) In D, const on either LHS or RHS of function declaration applies to the function, not return value, unless parents included: changed ^const <type> <fnname> to ^const(<type>) <fnname>