mirror of
https://github.com/lh3/minimap2.git
synced 2026-09-15 13:07:55 +08:00
make sdust work (it didn't)
This commit is contained in:
4
sdust.h
4
sdust.h
@@ -9,10 +9,10 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
// the simple interface
|
||||
uint64_t *sdust(const uint8_t *seq, int l_seq, int T, int W, int *n);
|
||||
uint64_t *sdust(void *km, const uint8_t *seq, int l_seq, int T, int W, int *n);
|
||||
|
||||
// the following interface dramatically reduce heap allocations when sdust is frequently called.
|
||||
sdust_buf_t *sdust_buf_init(void);
|
||||
sdust_buf_t *sdust_buf_init(void *km);
|
||||
void sdust_buf_destroy(sdust_buf_t *buf);
|
||||
const uint64_t *sdust_core(const uint8_t *seq, int l_seq, int T, int W, int *n, sdust_buf_t *buf);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user