diff --git a/java/src/org/broadinstitute/sting/gatk/io/stubs/VCFWriterArgumentTypeDescriptor.java b/java/src/org/broadinstitute/sting/gatk/io/stubs/VCFWriterArgumentTypeDescriptor.java index d885760af..0f0536ba8 100644 --- a/java/src/org/broadinstitute/sting/gatk/io/stubs/VCFWriterArgumentTypeDescriptor.java +++ b/java/src/org/broadinstitute/sting/gatk/io/stubs/VCFWriterArgumentTypeDescriptor.java @@ -140,7 +140,7 @@ public class VCFWriterArgumentTypeDescriptor extends ArgumentTypeDescriptor { int indexOfLastDot = fileName.lastIndexOf("."); if ( indexOfLastDot == -1 ) return ""; - return fileName.substring(indexOfLastDot); + return fileName.substring(indexOfLastDot).toLowerCase(); } /**