libpappsomspp
Library for mass spectrometry
Loading...
Searching...
No Matches
psmspecglobscan.h
Go to the documentation of this file.
1/**
2 * \file pappsomspp/processing/cbor/psm/evalscan/psmspecglobscan.h
3 * \date 19/07/2025
4 * \author Olivier Langella
5 * \brief compute specglob alignment on scan's PSM
6 */
7
8/*******************************************************************************
9 * Copyright (c) 2025 Olivier Langella <Olivier.Langella@universite-paris-saclay.fr>.
10 *
11 * This file is part of PAPPSOms-tools.
12 *
13 * PAPPSOms-tools is free software: you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation, either version 3 of the License, or
16 * (at your option) any later version.
17 *https://visio.numerique.gouv.fr/
18 * PAPPSOms-tools is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with PAPPSOms-tools. If not, see <http://www.gnu.org/licenses/>.
25 *
26 ******************************************************************************/
27#pragma once
28
29#include "../cborscanmapbase.h"
30#include "psmspecglob.h"
31
32namespace pappso::cbor::psm
33{
34/**
35 * @todo write docs
36 */
38{
39 public:
40 /**
41 * Default constructor
42 */
43 PsmSpecGlobScan(const PsmSpecGlob &psm_specgloc,
44 pappso::PrecisionPtr fragment_tolerance);
45
46 /**
47 * Destructor
48 */
49 virtual ~PsmSpecGlobScan();
50
51 protected:
52 void process() override;
53
54 private:
57 bool m_checkMutations = false;
58};
59} // namespace pappso::cbor::psm
CborScanMapBase(const PsmFileScanProcess &psm_file_scan_process)
pappso::PrecisionPtr m_fragmentTolerance
PsmSpecGlobScan(const PsmSpecGlob &psm_specgloc, pappso::PrecisionPtr fragment_tolerance)
const PrecisionBase * PrecisionPtr
Definition precision.h:122