Menu

#30 map segfaults if paired end reads are not provided

open
nobody
None
5
2010-05-25
2010-05-25
No

the map command will segfault if only one read file is given. Line 556 of match.cc should be:
fp_bfq_r = (optind+3 < argc)? gzopen(argv[optind+3], "r") : 0;
instead of:
fp_bfq_r = (optind < argc)? gzopen(argv[optind+3], "r") : 0;

Discussion


Log in to post a comment.