2013-02-01 02:59:48 +08:00
|
|
|
#ifndef BWAMEM_H_
|
|
|
|
|
#define BWAMEM_H_
|
|
|
|
|
|
|
|
|
|
#include "bwt.h"
|
|
|
|
|
|
2013-02-02 03:38:44 +08:00
|
|
|
struct __smem_i;
|
|
|
|
|
typedef struct __smem_i smem_i;
|
2013-02-01 02:59:48 +08:00
|
|
|
|
2013-02-01 04:55:22 +08:00
|
|
|
typedef struct {
|
2013-02-01 05:26:05 +08:00
|
|
|
int64_t rbeg;
|
|
|
|
|
int32_t qbeg, len;
|
2013-02-02 05:39:50 +08:00
|
|
|
} mem_seed_t;
|
2013-02-01 04:55:22 +08:00
|
|
|
|
2013-02-01 02:59:48 +08:00
|
|
|
typedef struct {
|
|
|
|
|
int a, b, q, r, w;
|
2013-02-01 04:55:22 +08:00
|
|
|
int min_seed_len, max_occ, max_chain_gap;
|
2013-02-05 01:37:38 +08:00
|
|
|
int8_t mat[25]; // scoring matrix; mat[0] == 0 if unset
|
2013-02-05 13:17:20 +08:00
|
|
|
float mask_level, chain_drop_ratio;
|
2013-02-02 05:39:50 +08:00
|
|
|
} mem_opt_t;
|
2013-02-01 02:59:48 +08:00
|
|
|
|
2013-02-01 04:55:22 +08:00
|
|
|
typedef struct {
|
|
|
|
|
int n, m;
|
|
|
|
|
int64_t pos;
|
2013-02-02 05:39:50 +08:00
|
|
|
mem_seed_t *seeds;
|
|
|
|
|
} mem_chain1_t;
|
2013-02-01 04:55:22 +08:00
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
int n, m;
|
2013-02-02 05:39:50 +08:00
|
|
|
mem_chain1_t *chains;
|
|
|
|
|
} mem_chain_t;
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2013-02-07 01:25:49 +08:00
|
|
|
int64_t rb, re;
|
2013-02-07 03:38:40 +08:00
|
|
|
int score, qb, qe, sub;
|
2013-02-07 02:59:32 +08:00
|
|
|
} mem_alnreg_t;
|
2013-02-01 04:55:22 +08:00
|
|
|
|
2013-02-01 02:59:48 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
smem_i *smem_itr_init(const bwt_t *bwt);
|
|
|
|
|
void smem_itr_destroy(smem_i *itr);
|
2013-02-02 03:20:38 +08:00
|
|
|
void smem_set_query(smem_i *itr, int len, const uint8_t *query);
|
2013-02-02 03:38:44 +08:00
|
|
|
const bwtintv_v *smem_next(smem_i *itr, int split_len);
|
2013-02-01 02:59:48 +08:00
|
|
|
|
2013-02-02 05:39:50 +08:00
|
|
|
mem_opt_t *mem_opt_init(void);
|
2013-02-05 01:37:38 +08:00
|
|
|
void mem_fill_scmat(int a, int b, int8_t mat[25]);
|
2013-02-01 02:59:48 +08:00
|
|
|
|
2013-02-02 05:39:50 +08:00
|
|
|
mem_chain_t mem_chain(const mem_opt_t *opt, const bwt_t *bwt, int len, const uint8_t *seq);
|
2013-02-07 02:59:32 +08:00
|
|
|
int mem_chain_flt(const mem_opt_t *opt, int n_chn, mem_chain1_t *chains);
|
|
|
|
|
void mem_chain2aln(const mem_opt_t *opt, int64_t l_pac, const uint8_t *pac, int l_query, const uint8_t *query, const mem_chain1_t *c, mem_alnreg_t *a);
|
|
|
|
|
uint32_t *mem_gen_cigar(const mem_opt_t *opt, int64_t l_pac, const uint8_t *pac, int l_query, uint8_t *query, int64_t rb, int64_t re, int *score, int *n_cigar);
|
2013-02-01 05:26:05 +08:00
|
|
|
|
2013-02-01 02:59:48 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|