libpappsomspp
Library for mass spectrometry
Loading...
Searching...
No Matches
peptiderawfragmentmasses.cpp
Go to the documentation of this file.
1/**
2 * \file pappsomspp/peptide/peptiderawfragmentmasses.cpp
3 * \date 16/7/2016
4 * \author Olivier Langella
5 * \brief class dedicated to raw mass computations of peptide products
6 * (fragments)
7 */
8
9/*******************************************************************************
10 * Copyright (c) 2016 Olivier Langella <Olivier.Langella@moulon.inra.fr>.
11 *
12 * This file is part of the PAPPSOms++ library.
13 *
14 * PAPPSOms++ is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation, either version 3 of the License, or
17 * (at your option) any later version.
18 *
19 * PAPPSOms++ is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with PAPPSOms++. If not, see <http://www.gnu.org/licenses/>.
26 *
27 * Contributors:
28 * Olivier Langella <Olivier.Langella@moulon.inra.fr> - initial API and
29 *implementation
30 ******************************************************************************/
31
33namespace pappso
34{
35
36
38 [(std::int8_t)Enums::PeptideIon::b] = 0,
39 [(std::int8_t)Enums::PeptideIon::bstar] = -MASSNH3,
40 [(std::int8_t)Enums::PeptideIon::bo] = -MASSH2O,
41 [(std::int8_t)Enums::PeptideIon::a] = -MASSCO,
42 [(std::int8_t)Enums::PeptideIon::astar] = -MASSCO - MASSNH3,
43 [(std::int8_t)Enums::PeptideIon::ao] = -MASSCO - MASSH2O,
44 [(std::int8_t)Enums::PeptideIon::bp] = -1,
45 [(std::int8_t)Enums::PeptideIon::c] = MASSNH3,
46 [(std::int8_t)Enums::PeptideIon::y] = MASSH2O,
47 [(std::int8_t)Enums::PeptideIon::ystar] = MASSH2O - MASSNH3,
48 [(std::int8_t)Enums::PeptideIon::yo] = 0,
50 [(std::int8_t)Enums::PeptideIon::yp] = -1,
51 [(std::int8_t)Enums::PeptideIon::x] = MASSCO + MASSOXYGEN};
52
53
56{
57 return m_ionDeltaMz[(std::int8_t)ion_type];
58}
59
60
63{
64
65 qDebug();
66 std::vector<Aa>::const_iterator it(peptide.begin());
67 std::vector<Aa>::const_iterator end(peptide.end());
68 if(it == end)
69 return;
70
71 qDebug();
72 pappso_double cumulative_mass = it->getMass();
73 if(peptide.getNterModification() != nullptr)
74 {
75 cumulative_mass += peptide.getNterModification()->getMass();
76 }
77 qDebug();
78 m_cumulativeNterMasses.push_back(cumulative_mass);
79 it++;
80
81 if(it != end)
82 {
83 end--;
84 qDebug();
85 while(it != end)
86 {
87
88 qDebug() << " cumulative_mass=" << cumulative_mass;
89 cumulative_mass += it->getMass();
90 if((mode == RawFragmentationMode::proline_effect) && (it->getLetter() == 'P'))
91 {
92 }
93 else
94 {
95 m_cumulativeNterMasses.push_back(cumulative_mass);
96 }
97 it++;
98 }
99 }
100
101 qDebug();
102 std::vector<Aa>::const_reverse_iterator rit(peptide.rbegin());
103 std::vector<Aa>::const_reverse_iterator ritf(peptide.rbegin());
104 std::vector<Aa>::const_reverse_iterator rend(peptide.rend());
105 ritf++;
106 cumulative_mass = rit->getMass();
107 if(peptide.getCterModification() != nullptr)
108 {
109 cumulative_mass += peptide.getCterModification()->getMass();
110 }
111 if((mode == RawFragmentationMode::proline_effect) && (ritf != rend) && (ritf->getLetter() == 'P'))
112 {
113 }
114 else
115 {
116 m_cumulativeCterMasses.push_back(cumulative_mass);
117 }
118 qDebug();
119
120 rit++;
121 ritf++;
122 if(rit != rend)
123 {
124 rend--;
125 while(rit != rend)
126 {
127 cumulative_mass += rit->getMass();
128 if((mode == RawFragmentationMode::proline_effect) && (ritf != peptide.rend()) &&
129 (ritf->getLetter() == 'P'))
130 {
131 }
132 else
133 {
134 m_cumulativeCterMasses.push_back(cumulative_mass);
135 }
136 rit++;
137 ritf++;
138 }
139 }
140
141 qDebug();
142}
143
144void
145PeptideRawFragmentMasses::pushBackIonMasses(std::vector<pappso_double> &mass_list,
146 Enums::PeptideIon ion_type) const
147{
148 const std::vector<pappso_double> *p_mass_list = &m_cumulativeCterMasses;
149
150 if(peptideIonIsNter(ion_type))
151 {
152 // nter
153 p_mass_list = &m_cumulativeNterMasses;
154 }
155
156 for(pappso_double mass : *p_mass_list)
157 {
158 mass_list.push_back(mass + m_ionDeltaMz[(std::int8_t)ion_type]);
159 }
160}
161
162void
163PeptideRawFragmentMasses::pushBackIonMz(std::vector<pappso_double> &mass_list,
164 Enums::PeptideIon ion_type,
165 unsigned int charge) const
166{
167 const std::vector<pappso_double> *p_mass_list = &m_cumulativeCterMasses;
168
169 if(peptideIonIsNter(ion_type))
170 {
171 // nter
172 p_mass_list = &m_cumulativeNterMasses;
173 }
174
175 for(pappso_double mass : *p_mass_list)
176 {
177 mass_list.push_back((mass + m_ionDeltaMz[(std::int8_t)ion_type] + (MHPLUS * charge)) /
178 charge);
179 }
180}
181
182void
183PeptideRawFragmentMasses::pushBackMatchSpectrum(std::vector<SimplePeakIonMatch> &peak_match_list,
184 const MassSpectrum &spectrum,
185 PrecisionPtr precision,
186 Enums::PeptideIon ion_type,
187 unsigned int charge) const
188{
189 std::vector<pappso_double> mass_list;
190 pushBackIonMz(mass_list, ion_type, charge);
191
192 // no need to sort
193 // std::sort(mass_list.begin(), mass_list.end());
194
195 std::vector<pappso_double>::iterator it_mz = mass_list.begin();
196 std::vector<pappso_double>::iterator it_mz_end = mass_list.end();
197
198 // scan products over each peak in spectrum :
199 std::vector<DataPoint>::const_iterator it_peak = spectrum.begin();
200 std::vector<DataPoint>::const_iterator it_peak_end = spectrum.end();
201 unsigned int ion_size = 1;
202 while((it_peak != it_peak_end) && (it_mz != it_mz_end))
203 {
204 MzRange massrange(it_peak->x, precision);
205 if((*it_mz) > massrange.upper())
206 {
207 it_peak++;
208 continue;
209 }
210 if((*it_mz) < massrange.lower())
211 {
212 it_mz++;
213 ion_size++;
214 continue;
215 }
216 peak_match_list.push_back({(*it_peak), ion_type, ion_size, charge, (*it_mz)});
217 it_mz++;
218 ion_size++;
219 }
220}
221
225} // namespace pappso
pappso_double getMass() const
Class to represent a mass spectrum.
pappso_double lower() const
Definition mzrange.h:71
pappso_double upper() const
Definition mzrange.h:77
void pushBackIonMasses(std::vector< pappso_double > &mass_list, Enums::PeptideIon ion_type) const
void pushBackMatchSpectrum(std::vector< SimplePeakIonMatch > &peak_match_list, const MassSpectrum &spectrum, PrecisionPtr precision, Enums::PeptideIon ion_type, unsigned int charge) const
PeptideRawFragmentMasses(const Peptide &peptide, RawFragmentationMode mode)
std::vector< pappso_double > m_cumulativeCterMasses
cumulative Cter masses (without internal Cter modification)
std::vector< pappso_double > m_cumulativeNterMasses
cumulative Nter masses (without internal Nter modification)
void pushBackIonMz(std::vector< pappso_double > &mass_list, Enums::PeptideIon ion_type, unsigned int charge) const
static pappso_double getDeltaMass(Enums::PeptideIon ion_type)
AaModificationP getCterModification() const
Definition peptide.cpp:680
std::vector< Aa >::const_reverse_iterator rend() const
Definition peptide.cpp:203
std::vector< Aa >::const_reverse_iterator rbegin() const
Definition peptide.cpp:197
AaModificationP getNterModification() const
Definition peptide.cpp:686
std::vector< Aa >::iterator begin()
Definition peptide.cpp:173
std::vector< Aa >::iterator end()
Definition peptide.cpp:179
PeptideIon
Enums::PeptideIon enum defines all types of ions (Nter or Cter).
Definition types.h:286
@ a
Nter aldimine ions.
Definition types.h:290
@ y
Cter amino ions.
Definition types.h:295
@ c
Nter amino ions.
Definition types.h:294
@ astar
Nter aldimine ions + NH3 loss.
Definition types.h:291
@ ystar
Cter amino ions + NH3 loss.
Definition types.h:296
@ yo
Cter amino ions + H2O loss.
Definition types.h:297
@ bstar
Nter acylium ions + NH3 loss.
Definition types.h:288
@ b
Nter acylium ions.
Definition types.h:287
@ x
Cter acylium ions.
Definition types.h:300
@ bo
Nter acylium ions + H2O loss.
Definition types.h:289
@ ao
Nter aldimine ions + H2O loss.
Definition types.h:292
@ z
Cter carbocations.
Definition types.h:298
tries to keep as much as possible monoisotopes, removing any possible C13 peaks and changes multichar...
Definition aa.cpp:39
const pappso_double MASSCO(MASSCARBON+MASSOXYGEN)
const pappso_double MHPLUS(1.007276466879)
double pappso_double
A type definition for doubles.
Definition types.h:60
const pappso_double MPROTIUM(1.007825032241)
const pappso_double MASSH2O((MPROTIUM *2)+MASSOXYGEN)
bool peptideIonIsNter(Enums::PeptideIon ion_type)
tells if an ion is Nter
Definition peptide.cpp:87
const pappso_double MASSNH3((MPROTIUM *3)+MASSNITROGEN)
const pappso_double MASSNITROGEN(14.0030740048)
const pappso_double MASSOXYGEN(15.99491461956)
const PrecisionBase * PrecisionPtr
Definition precision.h:122