Skip to content
Snippets Groups Projects
Commit d2e3d35b authored by Langella Olivier's avatar Langella Olivier
Browse files

precursor m/z and charge added in the spectra tab

parent 2451287d
No related branches found
No related tags found
No related merge requests found
......@@ -66,8 +66,12 @@ void SpectraSheet::writeHeaders(IdentificationGroup * p_ident) {
_p_writer->writeCell("Scan");
_p_writer->setCellAnnotation("retention time in seconds");
_p_writer->writeCell("Rt (seconds)");
_p_writer->setCellAnnotation("experimental precursor m/z");
_p_writer->writeCell("Precursor m/z");
_p_writer->setCellAnnotation("peptide sequence (best match)");
_p_writer->writeCell("Sequence (top)");
_p_writer->setCellAnnotation("peptide charge (best match)");
_p_writer->writeCell("Charge (top)");
_p_writer->setCellAnnotation("peptide modifications (best match)");
_p_writer->writeCell("Modifs (top)");
if (_p_project->getLabelingMethodSp().get() != nullptr) {
......@@ -95,7 +99,9 @@ void SpectraSheet::writeBestPeptideEvidence(const GroupingGroup * p_group,const
_p_writer->writeCell(p_peptide_evidence->getMsRunP()->getSampleName());
_p_writer->writeCell(p_peptide_evidence->getScan());
_p_writer->writeCell(p_peptide_evidence->getRetentionTime());
_p_writer->writeCell(p_peptide_evidence->getExperimentalMz());
_p_writer->writeCell(p_peptide_evidence->getPeptideXtpSp().get()->getSequence());
_p_writer->writeCell(p_peptide_evidence->getCharge());
_p_writer->writeCell(p_peptide_evidence->getPeptideXtpSp().get()->getModifString());
if (_p_project->getLabelingMethodSp().get() != nullptr) {
const Label * p_label = p_peptide_evidence->getPeptideXtpSp().get()->getLabel();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment