Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
lh3 committed Apr 10, 2018
2 parents 11d53b0 + e624290 commit f090f93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bwakit/bwa-postalt.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ function bwa_postalt(args)
// process SAM
var buf2 = [], hla = {};
file = args.length - getopt.ind >= 2? new File(args[getopt.ind+1]) : new File();
while (file.readline(buf) >= 0) {
while (file.readline(buf) > 0) {
var m, line = buf.toString();

if (line.charAt(0) == '@') { // print and then skip the header line
Expand Down

0 comments on commit f090f93

Please sign in to comment.