removed maxRuntime minValue

This commit is contained in:
Geraldine Van der Auwera 2014-01-13 20:45:43 -05:00
parent 8fcad6680b
commit bdb3954eb3
1 changed files with 1 additions and 1 deletions

View File

@ -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)