Skip to content

Commit

Permalink
Merge pull request #3 from muffato/master
Browse files Browse the repository at this point in the history
bugfix: allow empty lines in the Stockholm file
  • Loading branch information
Kevin Howe authored Oct 10, 2017
2 parents 7a9141d + fee7d4c commit 3b3991e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/align.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,8 @@ struct Alignment *read_Stockholm_Alignment( FILE *handle ) {

if (line[0] == comment)
continue;
if (line[0] == '\n')
continue;
else if (strncmp(line, terminator, 2) == 0) {
break;
}
Expand Down

0 comments on commit 3b3991e

Please sign in to comment.