Merge branch 'laptop'

This commit is contained in:
Kiran V Garimella 2011-07-23 01:01:11 -04:00
commit 7da99388ac
1 changed files with 2 additions and 1 deletions

View File

@ -266,7 +266,8 @@ public class PhaseByTransmission extends RodWalker<Integer, Integer> {
}
}
Map<String, Object> attributes = bestChildGenotype.getAttributes();
Map<String, Object> attributes = new HashMap<String, Object>();
attributes.putAll(bestChildGenotype.getAttributes());
attributes.put(TRANSMISSION_PROBABILITY_TAG_NAME, bestPrior*bestConfigurationLikelihood / norm);
bestChildGenotype = Genotype.modifyAttributes(bestChildGenotype, attributes);