Commented out the generation of the GATKReport that I was using for debugging.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5903 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
kiran 2011-05-27 22:15:09 +00:00
parent 2a9c75c5ba
commit b4d379584c
1 changed files with 4 additions and 0 deletions

View File

@ -243,6 +243,7 @@ public class PhaseByTransmission extends RodWalker<Integer, Integer> {
double norm = 0.0;
/*
GATKReport report = new GATKReport();
report.addTable("TransmissionProbability", "Reports various quantities used to compute transmission probability");
@ -255,6 +256,7 @@ public class PhaseByTransmission extends RodWalker<Integer, Integer> {
table.addColumn("child", "unknown");
table.addColumn("childProbability", "unknown");
table.addColumn("configLikelihood", "unknown");
*/
for (Genotype momGenotype : possibleMomGenotypes) {
for (Genotype dadGenotype : possibleDadGenotypes) {
@ -271,6 +273,7 @@ public class PhaseByTransmission extends RodWalker<Integer, Integer> {
bestChildGenotype = childGenotype;
}
/*
String config = momGenotype.toString() + dadGenotype.toString() + childGenotype.toString();
double[] momLikelihoods = MathUtils.normalizeFromLog10(momGenotype.getLikelihoods().getAsVector());
@ -292,6 +295,7 @@ public class PhaseByTransmission extends RodWalker<Integer, Integer> {
table.set(config, "childProbability", childProbability);
table.set(config, "configLikelihood", prior*configurationLikelihood);
*/
}
}
}