Skip to content

Commit 2b47846

Browse files
committed
r1008: don't parse space in BED
1 parent 67dd906 commit 2b47846

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ mm_idx_intv_t *mm_idx_read_bed(const mm_idx_t *mi, const char *fn, int read_junc
654654
char *p, *q, *bl, *bs;
655655
int32_t i, id = -1, n_blk = 0;
656656
for (p = q = str.s, i = 0;; ++p) {
657-
if (*p == 0 || isspace(*p)) {
657+
if (*p == 0 || *p == '\t') {
658658
int32_t c = *p;
659659
*p = 0;
660660
if (i == 0) { // chr

main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include "mmpriv.h"
88
#include "ketopt.h"
99

10-
#define MM_VERSION "2.17-r974-dirty"
10+
#define MM_VERSION "2.17-r1008-dirty"
1111

1212
#ifdef __linux__
1313
#include <sys/resource.h>

0 commit comments

Comments
 (0)