libpappsomspp
Library for mass spectrometry
Loading...
Searching...
No Matches
msrunreader.cpp
Go to the documentation of this file.
1/**
2 * \file pappsomspp/msrun/msrunreader.cpp
3 * \date 29/05/2018
4 * \author Olivier Langella
5 * \brief base interface to read MSrun files
6 */
7
8/*******************************************************************************
9 * Copyright (c) 2018 Olivier Langella <Olivier.Langella@u-psud.fr>.
10 *
11 * This file is part of the PAPPSOms++ library.
12 *
13 * PAPPSOms++ 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 *
18 * PAPPSOms++ 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++. If not, see <http://www.gnu.org/licenses/>.
25 *
26 ******************************************************************************/
27
28#include <QDebug>
29#include <QObject>
30
31#include "msrunreader.h"
33
34
36 qRegisterMetaType<pappso::MsRunReaderSPtr>("pappso::MsRunReaderSPtr");
37
38
39namespace pappso
40{
41
42
44{
45}
46
52
53
54const MsRunIdCstSPtr &
56{
57 return mcsp_msRunId;
58}
59
60
66
67void
68MsRunReader::setMonoThread(bool is_mono_thread)
69{
70 m_isMonoThread = is_mono_thread;
71}
72
73bool
75{
76 return m_isMonoThread;
77}
78
79
80std::size_t
82{
83 qDebug() << " " << mpa_multiMapScanNumber;
84
85 if(mpa_multiMapScanNumber == nullptr)
86 {
88
89 MsRunReadConfig config;
90 std::vector<size_t> ms_levels;
91 for(std::size_t i = 1; i < 9; i++)
92 {
93 ms_levels.push_back(i);
94 }
95 config.setMsLevels(ms_levels);
96 config.setNeedPeakList(false);
98 }
99 try
100 {
101 return mpa_multiMapScanNumber->getSpectrumIndexFromScanNumber(scan_number);
102 }
103
104 catch(ExceptionNotFound &error)
105 {
106 throw ExceptionNotFound(QObject::tr("error reading file %1 : %2")
107 .arg(mcsp_msRunId.get()->getFileName())
108 .arg(error.qwhat()));
109 }
110 catch(PappsoException &error)
111 {
112 throw PappsoException(QObject::tr("error reading file %1 : %2")
113 .arg(mcsp_msRunId.get()->getFileName())
114 .arg(error.qwhat()));
115 }
116}
117
118
119bool
121{
122 return false;
123}
124
125std::vector<double>
127{
128 qDebug();
129
130 try
131 {
132
133 MsRunReaderRetentionTimeLine reader_timeline;
134 MsRunReadConfig config;
135 config.setMsLevels({1});
136 config.setNeedPeakList(false);
137 // readSpectrumCollectionByMsLevel(reader_timeline, 1);
138 readSpectrumCollection2(config, reader_timeline);
139
140 return reader_timeline.getRetentionTimeLine();
141 }
142
143 catch(ExceptionNotFound &error)
144 {
145 throw ExceptionNotFound(QObject::tr("error reading file %1 : %2")
146 .arg(mcsp_msRunId.get()->getFileName())
147 .arg(error.qwhat()));
148 }
149 catch(PappsoException &error)
150 {
151 throw PappsoException(QObject::tr("error reading file %1 : %2")
152 .arg(mcsp_msRunId.get()->getFileName())
153 .arg(error.qwhat()));
154 }
155}
156
157
158Trace
160{
161 qDebug();
162
163 try
164 {
165 MsRunReaderTicChromatogram ms_run_reader;
166
167 MsRunReadConfig config;
168 config.setMsLevels({1});
169 config.setNeedPeakList(true);
170 // readSpectrumCollectionByMsLevel(reader_timeline, 1);
171 readSpectrumCollection2(config, ms_run_reader);
172
173 return ms_run_reader.getTicChromatogram();
174 }
175
176 catch(ExceptionNotFound &error)
177 {
178 throw ExceptionNotFound(QObject::tr("error reading file %1 : %2")
179 .arg(mcsp_msRunId.get()->getFileName())
180 .arg(error.qwhat()));
181 }
182 catch(PappsoException &error)
183 {
184 throw PappsoException(QObject::tr("error reading file %1 : %2")
185 .arg(mcsp_msRunId.get()->getFileName())
186 .arg(error.qwhat()));
187 }
188}
189
190} // namespace pappso
191
194{
195 throw ExceptionNotFound(
196 QObject::tr("instrument model name not found in %1").arg(mcsp_msRunId.get()->getFileName()));
197}
void setNeedPeakList(bool need_peak_list)
void setMsLevels(std::vector< std::size_t > ms_levels)
const std::vector< double > & getRetentionTimeLine() const
provides a multimap to find quickly spectrum index from scan number
MsRunIdCstSPtr mcsp_msRunId
virtual const OboPsiModTerm getOboPsiModTermInstrumentModelName() const
get OboPsiModTerm corresponding to the instrument model name child of : [Term] id: MS:1000031 name: i...
MsRunReader(const MsRunIdCstSPtr &ms_run_id)
MsRunReaderScanNumberMultiMap * mpa_multiMapScanNumber
virtual bool hasScanNumbers() const
tells if spectra can be accessed using scan numbers by default, it returns false. Only overrided func...
void setMonoThread(bool is_mono_thread)
set only one is_mono_thread to true
virtual void readSpectrumCollection2(const MsRunReadConfig &config, SpectrumCollectionHandlerInterface &handler)=0
function to visit an MsRunReader and get each Spectrum in a spectrum collection handler
virtual std::vector< double > getRetentionTimeLine()
retention timeline get retention times along the MSrun in seconds
virtual std::size_t scanNumber2SpectrumIndex(std::size_t scan_number)
if possible, converts a scan number into a spectrum index This is a convenient function to help trans...
bool isMonoThread() const
virtual Trace getTicChromatogram()
get a TIC chromatogram
const MsRunIdCstSPtr & getMsRunId() const
virtual const QString & qwhat() const
A simple container of DataPoint instances.
Definition trace.h:152
int msRunReaderSPtrMetaTypeId
tries to keep as much as possible monoisotopes, removing any possible C13 peaks and changes multichar...
Definition aa.cpp:39
std::shared_ptr< const MsRunId > MsRunIdCstSPtr
Definition msrunid.h:46