diff --git a/public/java/src/org/broadinstitute/sting/commandline/ArgumentTypeDescriptor.java b/public/java/src/org/broadinstitute/sting/commandline/ArgumentTypeDescriptor.java index 54ade61f6..5d7eba16c 100644 --- a/public/java/src/org/broadinstitute/sting/commandline/ArgumentTypeDescriptor.java +++ b/public/java/src/org/broadinstitute/sting/commandline/ArgumentTypeDescriptor.java @@ -406,7 +406,7 @@ public abstract class ArgumentTypeDescriptor { else throw new UserException.CommandLineException( String.format("Failed to parse value %s for argument %s. Message: %s", - value.asString(), fieldName, e.getMessage())); + value, fieldName, e.getMessage())); } } }