diff --git a/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/EmpiricalSubstitutionGenotypeLikelihoods.java b/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/EmpiricalSubstitutionGenotypeLikelihoods.java index 548e57732..8eaf4e72a 100755 --- a/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/EmpiricalSubstitutionGenotypeLikelihoods.java +++ b/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/EmpiricalSubstitutionGenotypeLikelihoods.java @@ -43,8 +43,9 @@ public class EmpiricalSubstitutionGenotypeLikelihoods extends GenotypeLikelihood } public static SequencerPlatform standardizeSequencerPlatform( final String sequencerString ) { - if ( sequencerString != null && PLFieldToSequencerPlatform.containsKey(sequencerString) ) { - return PLFieldToSequencerPlatform.get(sequencerString); + String lcSequencerString = sequencerString.toLowerCase(); + if ( sequencerString != null && PLFieldToSequencerPlatform.containsKey(lcSequencerString) ) { + return PLFieldToSequencerPlatform.get(lcSequencerString); } else { return SequencerPlatform.UNKNOWN; }