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

fix for writing filter column

parent 835bfe5f
No related branches found
No related tags found
No related merge requests found
......@@ -312,7 +312,7 @@ public class VCFRecord
protected void appendFilter(String filter)
{
if(getFilter().length() == 0)
if(getFilter().length() == 0 || (getFilter().length() == 1 && getFilter().equals(".")))
this.filter = filter;
else
this.filter += ";" + filter;
......
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