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:
parent
2a9c75c5ba
commit
b4d379584c
|
|
@ -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);
|
||||
*/
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue