Merge branch 'master' of github.com:lh3/minimap2

This commit is contained in:
Heng Li 2020-03-22 19:17:01 -04:00
commit cb56fb762a
2 changed files with 2 additions and 9 deletions

2
kseq.h
View File

@ -89,7 +89,7 @@
#ifndef KSTRING_T
#define KSTRING_T kstring_t
typedef struct __kstring_t {
unsigned l, m;
size_t l, m;
char *s;
} kstring_t;
#endif

View File

@ -4,6 +4,7 @@
#include <assert.h>
#include "minimap.h"
#include "bseq.h"
#include "kseq.h"
#define MM_PARENT_UNSET (-1)
#define MM_PARENT_TMP_PRI (-2)
@ -35,14 +36,6 @@
extern "C" {
#endif
#ifndef KSTRING_T
#define KSTRING_T kstring_t
typedef struct __kstring_t {
unsigned l, m;
char *s;
} kstring_t;
#endif
typedef struct {
int n_u, n_a;
uint64_t *u;