Genotype check should be case-insensitive

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1649 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
ebanks 2009-09-18 03:23:30 +00:00
parent c186a49d55
commit 66a4de9a1d
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ public class SimpleVenn implements ConcordanceType {
printVariant(set2_writer, call2);
// intersection (concordant)
else if ( call1.getAltBasesFWD().equals(call2.getAltBasesFWD()) )
else if ( call1.getAltBasesFWD().equalsIgnoreCase(call2.getAltBasesFWD()) )
printVariant(intersect_writer, call1);
// intersection (discordant)
@ -74,4 +74,4 @@ public class SimpleVenn implements ConcordanceType {
set1_writer.close();
set2_writer.close();
}
}
}