int column = 1;
HSSFRow rowHead = sheet.createRow(++currentRow);
rowHead.setHeightInPoints(12.75f);
Cell cell = rowHead.createCell(column++);
MatchValidationLevel matchValidationLevel = psParameter.getMatchValidationLevel();
// High, Medium or Low - refers to the confidence in the peptide
if (matchValidationLevel == MatchValidationLevel.confident) {
cell.setCellValue("High");
} else if (matchValidationLevel == MatchValidationLevel.doubtful) {
cell.setCellValue("Medium");