Merge branch 'laptop'

This commit is contained in:
Kiran V Garimella 2011-07-23 01:12:06 -04:00
commit 5af9d50183
1 changed files with 1 additions and 2 deletions

View File

@ -234,8 +234,7 @@ public class PhaseByTransmission extends RodWalker<Integer, Integer> {
finalGenotypes.add(father);
finalGenotypes.add(child);
if (mother.isCalled() && !father.isCalled() && !child.isCalled()) {
} else {
if (mother.isCalled() && father.isCalled() && child.isCalled()) {
ArrayList<Genotype> possibleMotherGenotypes = createAllThreeGenotypes(ref, alt, mother);
ArrayList<Genotype> possibleFatherGenotypes = createAllThreeGenotypes(ref, alt, father);
ArrayList<Genotype> possibleChildGenotypes = createAllThreeGenotypes(ref, alt, child);