OK, let's bite the bullet. Now rodDbSNP objects are 'isSNP()' only when they are annotated as 'exact', not a 'range'.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1673 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
8ad181f46f
commit
15135788ca
|
|
@ -157,7 +157,7 @@ public class rodDbSNP extends BasicReferenceOrderedDatum implements Variation, V
|
|||
//
|
||||
// ----------------------------------------------------------------------
|
||||
public boolean isSNP() {
|
||||
return varType.contains("single");
|
||||
return varType.contains("single") && locType.contains("exact");
|
||||
}
|
||||
|
||||
public boolean isInsertion() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue