A few quick, minor findbugs fixes.

This commit is contained in:
Ryan Poplin 2012-08-09 16:30:58 -04:00
parent c7f22e410f
commit f4c72a26d5
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ import java.util.*;
*/
public class PairHMM {
private static final int MAX_CACHED_QUAL = (int)Byte.MAX_VALUE - 1;
private static final Byte MAX_CACHED_QUAL = Byte.MAX_VALUE;
private static final byte DEFAULT_GOP = (byte) 45;
private static final byte DEFAULT_GCP = (byte) 10;
private static final double BANDING_TOLERANCE = 22.0;