r416: removed a line of debugging code
This commit is contained in:
parent
7144a0cefc
commit
c564653b40
|
|
@ -57,7 +57,6 @@ int main_mem(int argc, char *argv[])
|
||||||
opt->pen_clip5 = opt->pen_clip3 = strtol(optarg, &p, 10);
|
opt->pen_clip5 = opt->pen_clip3 = strtol(optarg, &p, 10);
|
||||||
if (*p != 0 && ispunct(*p) && isdigit(p[1]))
|
if (*p != 0 && ispunct(*p) && isdigit(p[1]))
|
||||||
opt->pen_clip3 = strtol(p+1, &p, 10);
|
opt->pen_clip3 = strtol(p+1, &p, 10);
|
||||||
fprintf(stderr, "%d,%d\n", opt->pen_clip5, opt->pen_clip3);
|
|
||||||
} else if (c == 'R') {
|
} else if (c == 'R') {
|
||||||
if ((rg_line = bwa_set_rg(optarg)) == 0) return 1; // FIXME: memory leak
|
if ((rg_line = bwa_set_rg(optarg)) == 0) return 1; // FIXME: memory leak
|
||||||
} else if (c == 's') opt->split_width = atoi(optarg);
|
} else if (c == 's') opt->split_width = atoi(optarg);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue