Remove debug print statement
This commit is contained in:
parent
336050ab71
commit
3db8908ae8
|
|
@ -250,7 +250,6 @@ public class LikelihoodCalculationEngine {
|
||||||
final double[] likelihoods = batchPairHMM.batchGetResult();
|
final double[] likelihoods = batchPairHMM.batchGetResult();
|
||||||
for( int jjj = 0; jjj < numHaplotypes; jjj++ ) {
|
for( int jjj = 0; jjj < numHaplotypes; jjj++ ) {
|
||||||
final Haplotype haplotype = haplotypes.get(jjj);
|
final Haplotype haplotype = haplotypes.get(jjj);
|
||||||
System.err.println(Integer.toString(jjj) + ": " + Double.toString(likelihoods[jjj]));
|
|
||||||
if ( haplotype.isNonReference() )
|
if ( haplotype.isNonReference() )
|
||||||
bestNonReflog10L = Math.max(bestNonReflog10L, likelihoods[jjj]);
|
bestNonReflog10L = Math.max(bestNonReflog10L, likelihoods[jjj]);
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue