No need to sort the BQSR tables by default.
This commit is contained in:
parent
f63f27aa13
commit
aab160372a
|
|
@ -310,7 +310,7 @@ public class RecalUtils {
|
||||||
if(sortByCols) {
|
if(sortByCols) {
|
||||||
reportTable = new GATKReportTable("RecalTable" + reportTableIndex++, "", columnNames.size(), GATKReportTable.TableSortingWay.SORT_BY_COLUMN);
|
reportTable = new GATKReportTable("RecalTable" + reportTableIndex++, "", columnNames.size(), GATKReportTable.TableSortingWay.SORT_BY_COLUMN);
|
||||||
} else {
|
} else {
|
||||||
reportTable = new GATKReportTable("RecalTable" + reportTableIndex++, "", columnNames.size());
|
reportTable = new GATKReportTable("RecalTable" + reportTableIndex++, "", columnNames.size(), GATKReportTable.TableSortingWay.DO_NOT_SORT);
|
||||||
}
|
}
|
||||||
for (final Pair<String, String> columnName : columnNames)
|
for (final Pair<String, String> columnName : columnNames)
|
||||||
reportTable.addColumn(columnName.getFirst(), columnName.getSecond());
|
reportTable.addColumn(columnName.getFirst(), columnName.getSecond());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue