{
StatsKeeper.Section insertSizeSection = new StatsKeeper.Section("Insert size" + postfix);
insertSizeSection.addRow("Mean", sdf.formatDecimal(meanInsertSize));
insertSizeSection.addRow("Standard Deviation", sdf.formatDecimal(stdInsertSize));
insertSizeSection.addRow("P25/Median/P75", sdf.formatDecimal(p25InsertSize) + " / " +
sdf.formatDecimal(medianInsertSize) + " / " + sdf.formatDecimal(p75InsertSize));
summaryStatsKeeper.addSection(insertSizeSection);
}
int numIndels = numInsertions + numDeletions;
if ( numIndels > 0 || numMismatches > 0 || alignmentErrorRate > 0) {