Skip to content
Snippets Groups Projects
Commit 0567a0ef authored by tjc's avatar tjc
Browse files

fix for isNonVariant()

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@15545 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 6e75a6a2
Branches
Tags
No related merge requests found
...@@ -522,7 +522,7 @@ class VCFRecord ...@@ -522,7 +522,7 @@ class VCFRecord
protected boolean isNonVariant() protected boolean isNonVariant()
{ {
if(alt.equals(".")) if(alt.equals(".") && ref.length() == 1)
return true; return true;
return false; return false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment