From 04e3978b04f6ca0d63ee5c16664b4d604c763a52 Mon Sep 17 00:00:00 2001 From: Tad Jordan Date: Mon, 7 Jan 2013 12:08:39 -0500 Subject: [PATCH] Fixed VariantEval tests -Added sorting by rows to VariantEval --- .../sting/gatk/walkers/varianteval/VariantEvalReportWriter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/java/src/org/broadinstitute/sting/gatk/walkers/varianteval/VariantEvalReportWriter.java b/public/java/src/org/broadinstitute/sting/gatk/walkers/varianteval/VariantEvalReportWriter.java index 91efd1ffd..6dad128fe 100644 --- a/public/java/src/org/broadinstitute/sting/gatk/walkers/varianteval/VariantEvalReportWriter.java +++ b/public/java/src/org/broadinstitute/sting/gatk/walkers/varianteval/VariantEvalReportWriter.java @@ -162,7 +162,7 @@ public class VariantEvalReportWriter { // create the table final String tableName = ve.getSimpleName(); final String tableDesc = ve.getClass().getAnnotation(Analysis.class).description(); - report.addTable(tableName, tableDesc, 1 + stratifiers.size() + (scanner.hasMoltenField() ? 2 : datamap.size())); + report.addTable(tableName, tableDesc, 1 + stratifiers.size() + (scanner.hasMoltenField() ? 2 : datamap.size()), GATKReportTable.TableSortingWay.SORT_BY_ROW); // grab the table, and add the columns we need to it final GATKReportTable table = report.getTable(tableName);