r416: removed a line of debugging code

This commit is contained in:
Heng Li 2013-09-12 10:41:43 -04:00
parent 7144a0cefc
commit c564653b40
2 changed files with 1 additions and 2 deletions

View File

@ -57,7 +57,6 @@ int main_mem(int argc, char *argv[])
opt->pen_clip5 = opt->pen_clip3 = strtol(optarg, &p, 10);
if (*p != 0 && ispunct(*p) && isdigit(p[1]))
opt->pen_clip3 = strtol(p+1, &p, 10);
fprintf(stderr, "%d,%d\n", opt->pen_clip5, opt->pen_clip3);
} else if (c == 'R') {
if ((rg_line = bwa_set_rg(optarg)) == 0) return 1; // FIXME: memory leak
} else if (c == 's') opt->split_width = atoi(optarg);

2
main.c
View File

@ -3,7 +3,7 @@
#include "utils.h"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.7.5a-r415"
#define PACKAGE_VERSION "0.7.5a-r416"
#endif
int bwa_fa2pac(int argc, char *argv[]);