libpappsomspp
Library for mass spectrometry
Loading...
Searching...
No Matches
peptidebase.cpp
Go to the documentation of this file.
1/**
2 * \file pappsomspp/masschroq/peptidebase.cpp
3 * \date 24/01/2025
4 * \author Olivier Langella
5 * \brief peptide model base in masschroqlite
6 */
7
8/*******************************************************************************
9 * Copyright (c) 2025 Olivier Langella
10 *<Olivier.Langella@universite-paris-saclay.fr>.
11 *
12 * This file is part of MassChroQ.
13 *
14 * MassChroQ 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 * MassChroQ 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 MassChroQ. If not, see <http://www.gnu.org/licenses/>.
26 *
27 ******************************************************************************/
28
29#include "peptidebase.h"
30
32 : msp_peptide(peptide_sp)
33{
34}
35
39
40
43{
44 return msp_peptide;
45}
46
47void
49{
50 qDebug();
51 if(ni_min_abundance > 0)
52 {
53 qDebug() << "if (_minimum_isotope_abundance > 0)";
54 mpa_peptideNaturalIsotopeList = new pappso::PeptideNaturalIsotopeList(msp_peptide, 0.001);
55 }
56 qDebug();
57}
58
59
62{
63 return mpa_peptideNaturalIsotopeList;
64}
65
66const std::vector<pappso::PeptideNaturalIsotopeAverageSp> &
68 pappso::PrecisionPtr precision, std::uint8_t charge, double ni_min_abundance)
69{
70
71 QMutexLocker lock(&m_mutex);
72 if(m_niMinAbundance == ni_min_abundance)
73 {
74 }
75 else
76 {
77 m_peptideNaturalIsotopeAverageSpListByCharge.clear();
78 m_niMinAbundance = ni_min_abundance;
79 }
80
81 auto it = m_peptideNaturalIsotopeAverageSpListByCharge.find(charge);
82 if(it != m_peptideNaturalIsotopeAverageSpListByCharge.end())
83 {
84 if(it->second.size() == 0)
85 {
86 it->second =
87 mpa_peptideNaturalIsotopeList->getByIntensityRatio(charge, precision, ni_min_abundance);
88 }
89
90 return it->second;
91 }
92 else
93 {
94 auto it_insert = m_peptideNaturalIsotopeAverageSpListByCharge.insert(
95 {charge,
96 mpa_peptideNaturalIsotopeList->getByIntensityRatio(charge, precision, ni_min_abundance)});
97
98 return it_insert.first->second;
99 }
100}
virtual const pappso::PeptideNaturalIsotopeList * getPeptideNaturalIsotopeList() const
get list of isotopes for this peptide needs computeIsotopologues before
virtual void computeIsotopologues(double ni_min_abundance)
compute possible isotopes for this molecule
virtual const std::vector< pappso::PeptideNaturalIsotopeAverageSp > & getPeptideNaturalIsotopeAverageSpList(pappso::PrecisionPtr precision, std::uint8_t charge, double ni_min_abundance)
get possible and distinguishable masses of isotopes get list of distinguishable isotopes given the ch...
virtual const pappso::PeptideSp & getPappsoPeptideSp() const
get the peptide sequence
PeptideBase(const pappso::PeptideSp &peptide_sp)
std::shared_ptr< const Peptide > PeptideSp