From bdb3954eb37da87266a6d2fc9a531efeadd0e659 Mon Sep 17 00:00:00 2001 From: Geraldine Van der Auwera Date: Mon, 13 Jan 2014 20:45:43 -0500 Subject: [PATCH] removed maxRuntime minValue --- .../sting/gatk/arguments/GATKArgumentCollection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/java/src/org/broadinstitute/sting/gatk/arguments/GATKArgumentCollection.java b/public/java/src/org/broadinstitute/sting/gatk/arguments/GATKArgumentCollection.java index 88b34090c..2bbc5482b 100644 --- a/public/java/src/org/broadinstitute/sting/gatk/arguments/GATKArgumentCollection.java +++ b/public/java/src/org/broadinstitute/sting/gatk/arguments/GATKArgumentCollection.java @@ -142,7 +142,7 @@ public class GATKArgumentCollection { /** * This will truncate the run but without exiting with a failure. By default the value is interpreted in minutes, but this can be changed with the maxRuntimeUnits argument. */ - @Argument(fullName = "maxRuntime", shortName = "maxRuntime", doc="Stop execution cleanly as soon as maxRuntime has been reached", required = false, minValue = 0) + @Argument(fullName = "maxRuntime", shortName = "maxRuntime", doc="Stop execution cleanly as soon as maxRuntime has been reached", required = false) public long maxRuntime = GenomeAnalysisEngine.NO_RUNTIME_LIMIT; @Argument(fullName = "maxRuntimeUnits", shortName = "maxRuntimeUnits", doc="Unit of time used by maxRuntime", required = false)