|
#ifndef HTSLIB_UTIL_H |
|
#define HTSLIB_UTIL_H |
|
|
|
#include "htslib/sam.h" |
|
#include "htslib/vcf.h" |
|
#include "htslib/khash.h" |
|
|
|
int hts_set_verbosity(int verbosity); |
|
int hts_get_verbosity(void); |
|
|
|
|
|
KHASH_MAP_INIT_STR(vdict, bcf_idinfo_t) |
|
typedef khash_t(vdict) vdict_t; |
|
|
|
KHASH_DECLARE(s2i, kh_cstr_t, int64_t) |
|
typedef khash_t(s2i) s2i_t; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bam1_t * pysam_bam_update(bam1_t * b, |
|
const size_t nbytes_old, |
|
const size_t nbytes_new, |
|
uint8_t * pos); |
|
|
|
|
|
unsigned char pysam_translate_sequence(const unsigned char s); |
|
|
|
|
|
int aux_type2size(uint8_t type); |
|
|
|
|
|
|
|
|
|
static inline int pysam_bam_is_rev(bam1_t * b) { |
|
return bam_is_rev(b);}; |
|
|
|
static inline int pysam_bam_is_mrev(bam1_t * b) { |
|
return bam_is_mrev(b);} |
|
|
|
static inline char * pysam_bam_get_qname(bam1_t * b) { |
|
return bam_get_qname(b);} |
|
|
|
static inline uint32_t * pysam_bam_get_cigar(bam1_t * b) { |
|
return bam_get_cigar(b);} |
|
|
|
static inline uint8_t * pysam_bam_get_seq(bam1_t * b) { |
|
return bam_get_seq(b);} |
|
|
|
static inline uint8_t * pysam_bam_get_qual(bam1_t * b) { |
|
return bam_get_qual(b);} |
|
|
|
static inline uint8_t * pysam_bam_get_aux(bam1_t * b) { |
|
return bam_get_aux(b);} |
|
|
|
static inline int pysam_bam_get_l_aux(bam1_t * b) { |
|
return bam_get_l_aux(b); } |
|
|
|
static inline char pysam_bam_seqi(uint8_t * s, int i) { |
|
return bam_seqi(s,i);} |
|
|
|
static inline uint8_t pysam_get_qual(bam1_t * b) { |
|
return b->core.qual;} |
|
|
|
static inline uint32_t pysam_get_n_cigar(bam1_t * b) { |
|
return b->core.n_cigar;} |
|
|
|
static inline void pysam_set_qual(bam1_t * b, uint8_t v) { |
|
b->core.qual=v;} |
|
|
|
static inline void pysam_set_n_cigar(bam1_t * b, uint32_t v) { |
|
b->core.n_cigar=v;} |
|
|
|
static inline void pysam_update_flag(bam1_t * b, uint16_t v, uint16_t flag) { |
|
if (v) |
|
b->core.flag |= flag; |
|
else |
|
b->core.flag &= ~flag; |
|
} |
|
|
|
#endif |
|
|