Merge pull request #239 from broadinstitute/mc_quick_dt_output_fix

Make the missing targets output never use stdout
This commit is contained in:
Mark DePristo 2013-05-23 07:00:57 -07:00
commit b7fab31e25
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ final class ThresHolder {
@Argument(fullName = "quality_status_threshold", shortName = "stQ", doc = "The proportion of the loci needed for calling POOR_QUALITY", required = false)
public double qualityStatusThreshold = 0.50;
@Output(fullName = "missing_intervals", shortName = "missing", doc ="Produces a file with the intervals that don't pass filters", required = false)
@Output(fullName = "missing_intervals", shortName = "missing", defaultToStdout = false, doc ="Produces a file with the intervals that don't pass filters", required = false)
public PrintStream missingTargets = null;
public final List<Metric> locusMetricList = new LinkedList<Metric>();