Increasing the INFORMATIVE_LIKELIHOOD_THRESHOLD value to 0.2
This commit is contained in:
parent
b5d590ba92
commit
3950f7b3e3
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue