if (!pkTableModel.isCommonColumn(col)) {
row = convertRowIndexToModel(row);
RawDataFile dataFile = pkTableModel.getColumnDataFile(col);
peakListRow = peakList.getRow(row);
MassCandidate massCandidate = (MassCandidate) peakListRow
.getPeak(dataFile);
if (dataFile != null && massCandidate != null)
SpectraVisualizerModule.showNewSpectrumWindow(dataFile,
massCandidate.getSpectrumNumber(), massCandidate);
}
}