Skip to content
Snippets Groups Projects
Commit 42c891a1 authored by tjc's avatar tjc
Browse files

allow for X

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@16073 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent e5471855
No related branches found
No related tags found
No related merge requests found
...@@ -109,7 +109,7 @@ public class VariantBase ...@@ -109,7 +109,7 @@ public class VariantBase
protected boolean isNonVariant() protected boolean isNonVariant()
{ {
if (alt.equals(".") && record.getRef().length() == 1) if ((alt.equals(".") || alt.equals("X")) && record.getRef().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.
Finish editing this message first!
Please register or to comment