libpappsomspp
Library for mass spectrometry
Loading...
Searching...
No Matches
mzformatenumstr.cpp
Go to the documentation of this file.
1/**
2 * \file pappsomspp/msfile/mzformatenumstr.cpp
3 * \date 12/2/2021
4 * \author Olivier Langella <olivier.langella@universite-paris-saclay.fr>
5 * \brief convert mzformat enumerations to strings
6 *
7 */
8
9/*******************************************************************************
10 * Copyright (c) 2021 Olivier Langella
11 *<olivier.langella@universite-paris-saclay.fr>.
12 *
13 * This file is part of the PAPPSOms++ library.
14 *
15 * PAPPSOms++ is free software: you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation, either version 3 of the License, or
18 * (at your option) any later version.
19 *
20 * PAPPSOms++ is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with PAPPSOms++. If not, see <http://www.gnu.org/licenses/>.
27 *
28 ******************************************************************************/
29
30#include "mzformatenumstr.h"
32#include <QObject>
33
34using namespace pappso;
35
36const QString
38{
39
40 QString ms_data_format_str;
41 switch(ms_data_format_enum)
42 {
44 ms_data_format_str = "abSciexT2D";
45 break;
47 ms_data_format_str = "abSciexWiff";
48 break;
50 ms_data_format_str = "agilentMassHunter";
51 break;
53 ms_data_format_str = "brukerBaf";
54 break;
56 ms_data_format_str = "brukerFid";
57 break;
59 ms_data_format_str = "brukerTims";
60 break;
62 ms_data_format_str = "brukerYep";
63 break;
65 ms_data_format_str = "MGF";
66 break;
68 ms_data_format_str = "msn";
69 break;
71 ms_data_format_str = "mz5";
72 break;
74 ms_data_format_str = "mzML";
75 break;
77 ms_data_format_str = "mzXML";
78 break;
80 ms_data_format_str = "SQLite3";
81 break;
83 ms_data_format_str = "thermoRaw";
84 break;
86 ms_data_format_str = "watersRaw";
87 break;
89 ms_data_format_str = "xy";
90 break;
91 default:
93 QObject::tr("Enums::MsDataFormat unknown :\n%1")
94 .arg((std::uint8_t)ms_data_format_enum));
95 }
96 return ms_data_format_str;
97}
static const QString toString(Enums::MsDataFormat mz_format_enum)
convert mz format enumeration to human readable string
@ SQLite3
SQLite3 format.
Definition types.h:155
@ MGF
Mascot format.
Definition types.h:154
tries to keep as much as possible monoisotopes, removing any possible C13 peaks and changes multichar...
Definition aa.cpp:39