From da084357db0b36dba1bc6380241d816951a2d403 Mon Sep 17 00:00:00 2001 From: hanna Date: Fri, 9 Oct 2009 18:56:54 +0000 Subject: [PATCH] Fixed minor typo in output message. git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1806 348d0f76-0448-11de-a6fe-93d51630548a --- .../gatk/io/stubs/SAMFileWriterArgumentTypeDescriptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/src/org/broadinstitute/sting/gatk/io/stubs/SAMFileWriterArgumentTypeDescriptor.java b/java/src/org/broadinstitute/sting/gatk/io/stubs/SAMFileWriterArgumentTypeDescriptor.java index f53935d6d..051532498 100644 --- a/java/src/org/broadinstitute/sting/gatk/io/stubs/SAMFileWriterArgumentTypeDescriptor.java +++ b/java/src/org/broadinstitute/sting/gatk/io/stubs/SAMFileWriterArgumentTypeDescriptor.java @@ -70,7 +70,7 @@ public class SAMFileWriterArgumentTypeDescriptor extends ArgumentTypeDescriptor public Object parse( ArgumentSource source, Class type, ArgumentMatches matches ) { String writerFileName = getArgumentValue( createBAMArgumentDefinition(source), matches ); if( writerFileName == null ) - throw new StingException("SAM file compression was supplied, but not associated writer was supplied with it."); + throw new StingException("SAM file compression was supplied, but no associated writer was supplied with it."); SAMFileWriterStub stub = new SAMFileWriterStub(engine, new File(writerFileName));