2013-02-01 02:59:48 +08:00
|
|
|
#ifndef BWAMEM_H_
|
|
|
|
|
#define BWAMEM_H_
|
|
|
|
|
|
|
|
|
|
#include "bwt.h"
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
const bwt_t *bwt;
|
|
|
|
|
const uint8_t *query;
|
2013-02-02 03:20:38 +08:00
|
|
|
int start, len;
|
|
|
|
|
bwtintv_v *matches; // matches
|
|
|
|
|
bwtintv_v *tmpvec[2], *sub; // these are temporary arrays
|
2013-02-01 02:59:48 +08:00
|
|
|
} smem_i;
|
|
|
|
|
|
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-01 04:55:22 +08:00
|
|
|
} memseed_t;
|
|
|
|
|
|
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-01 02:59:48 +08:00
|
|
|
} memopt_t;
|
|
|
|
|
|
2013-02-01 04:55:22 +08:00
|
|
|
typedef struct {
|
|
|
|
|
int n, m;
|
|
|
|
|
int64_t pos;
|
|
|
|
|
memseed_t *seeds;
|
|
|
|
|
} memchain1_t;
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
int n, m;
|
|
|
|
|
memchain1_t *chains;
|
|
|
|
|
} memchain_t;
|
|
|
|
|
|
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);
|
|
|
|
|
int smem_next(smem_i *itr, int split_len);
|
2013-02-01 02:59:48 +08:00
|
|
|
|
|
|
|
|
memopt_t *mem_opt_init(void);
|
|
|
|
|
|
2013-02-01 05:26:05 +08:00
|
|
|
memchain_t mem_chain(const memopt_t *opt, const bwt_t *bwt, int len, const uint8_t *seq);
|
|
|
|
|
|
2013-02-01 02:59:48 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|