Increasing the INFORMATIVE_LIKELIHOOD_THRESHOLD value to 0.2

This commit is contained in:
Ryan Poplin 2012-12-18 15:45:12 -05:00
parent b5d590ba92
commit 3950f7b3e3
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ import java.util.*;
public abstract class PerReadAlleleLikelihoodMap {
public static final double INFORMATIVE_LIKELIHOOD_THRESHOLD = 0.1;
public static final double INFORMATIVE_LIKELIHOOD_THRESHOLD = 0.2;
protected List<Allele> alleles;
protected Map<GATKSAMRecord, Map<Allele, Double>> likelihoodReadMap;
@ -126,7 +126,7 @@ public abstract class PerReadAlleleLikelihoodMap {
public static PerReadAlleleLikelihoodMap getBestAvailablePerReadAlleleLikelihoodMap() {
final Class PerReadAlleleLikelihoodMapClass = GATKLiteUtils.getProtectedClassIfAvailable(PerReadAlleleLikelihoodMap.class);
try {
Constructor constructor = PerReadAlleleLikelihoodMapClass.getDeclaredConstructor((Class[])null);
final Constructor constructor = PerReadAlleleLikelihoodMapClass.getDeclaredConstructor((Class[])null);
constructor.setAccessible(true);
return (PerReadAlleleLikelihoodMap)constructor.newInstance();
}