break;
case none:
validationStatusLbl.setForeground(Color.gray);
}
TargetDecoyResults targetDecoyResults = targetDecoyMap.getTargetDecoyResults();
String validationThresholdTxt = "";
double threshold = targetDecoyResults.getUserInput();
int thresholdType = targetDecoyResults.getInputType();
if (thresholdType == 0) {
validationThresholdTxt += "Validation Threshold: " + Util.roundDouble(threshold, 2) + "%";
} else if (targetDecoyResults.getInputType() == 1) {
validationThresholdTxt += "FDR Threshold: " + Util.roundDouble(threshold, 2) + "%";
} else if (targetDecoyResults.getInputType() == 2) {
validationThresholdTxt += "FNR Threshold: " + Util.roundDouble(threshold, 2) + "%";
}
validationThresholdLbl.setText(validationThresholdTxt);
confidenceLbl.setText("Confidence: " + Util.roundDouble(confidence, 2) + "%");
double validationThreshold = targetDecoyResults.getConfidenceLimit();
confidenceThresholdLbl.setText("Expected Confidence: " + Util.roundDouble(validationThreshold, 2) + "%");
double resolution = targetDecoyMap.getResolution();
double confidenceThreshold = validationThreshold + resolution;
if (confidenceThreshold > 100) {
confidenceThreshold = 100;