Skip to content
Snippets Groups Projects
Commit b0cc9a15 authored by tcarver's avatar tcarver
Browse files

fix for blank lines in GenBank sequence

parent 772f8de2
No related branches found
No related tags found
No related merge requests found
......@@ -203,7 +203,9 @@ public class GenbankStreamSequence extends StreamSequence
in_stream.getLineNumber());
}
}
appendChar(this_line_sequence_buffer.toString().toLowerCase().toCharArray());
if(this_line_sequence_buffer.length() > 0)
appendChar(this_line_sequence_buffer.toString().toLowerCase().toCharArray());
}
setCounts();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment