diff --git a/fastmap.c b/fastmap.c index 21e47e0..05e7d7f 100644 --- a/fastmap.c +++ b/fastmap.c @@ -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); diff --git a/main.c b/main.c index 998719f..a215408 100644 --- a/main.c +++ b/main.c @@ -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[]);