From 819d843e3c628835b90efff2cd1347738de34074 Mon Sep 17 00:00:00 2001 From: Chris Seymour Date: Wed, 19 Apr 2023 10:27:35 +0100 Subject: [PATCH] make mm_tbuf_t public --- map.c | 5 ----- minimap.h | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/map.c b/map.c index 2342c9e..360c889 100644 --- a/map.c +++ b/map.c @@ -10,11 +10,6 @@ #include "bseq.h" #include "khash.h" -struct mm_tbuf_s { - void *km; - int rep_len, frag_gap; -}; - mm_tbuf_t *mm_tbuf_init(void) { mm_tbuf_t *b; diff --git a/minimap.h b/minimap.h index 4ea81df..ee7b613 100644 --- a/minimap.h +++ b/minimap.h @@ -193,6 +193,11 @@ typedef struct { } mm_idx_reader_t; // memory buffer for thread-local storage during mapping +struct mm_tbuf_s { + void *km; + int rep_len, frag_gap; +}; + typedef struct mm_tbuf_s mm_tbuf_t; // global variables