OpenMS  2.7.0
SpectrumMetaDataLookup.h
Go to the documentation of this file.
1 // --------------------------------------------------------------------------
2 // OpenMS -- Open-Source Mass Spectrometry
3 // --------------------------------------------------------------------------
4 // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
5 // ETH Zurich, and Freie Universitaet Berlin 2002-2021.
6 //
7 // This software is released under a three-clause BSD license:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of any author or any participating institution
14 // may be used to endorse or promote products derived from this software
15 // without specific prior written permission.
16 // For a full list of authors, refer to the file AUTHORS.
17 // --------------------------------------------------------------------------
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 // ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
22 // INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
30 // --------------------------------------------------------------------------
31 // $Maintainer: Hendrik Weisser $
32 // $Authors: Hendrik Weisser $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
38 
43 
44 #include <limits> // for "quiet_NaN"
45 
46 namespace OpenMS
47 {
48 
142  class OPENMS_DLLAPI SpectrumMetaDataLookup: public SpectrumLookup
143  {
144  public:
145 
147  typedef unsigned char MetaDataFlags;
148 
151  static const MetaDataFlags MDF_RT = 1;
152  static const MetaDataFlags MDF_PRECURSORRT = 2;
153  static const MetaDataFlags MDF_PRECURSORMZ = 4;
154  static const MetaDataFlags MDF_PRECURSORCHARGE = 8;
155  static const MetaDataFlags MDF_MSLEVEL = 16;
156  static const MetaDataFlags MDF_SCANNUMBER = 32;
157  static const MetaDataFlags MDF_NATIVEID = 64;
158  static const MetaDataFlags MDF_ALL = 127;
159 
160 
163  {
164  double rt;
165  double precursor_rt;
166  double precursor_mz;
171 
174  rt(std::numeric_limits<double>::quiet_NaN()),
175  precursor_rt(std::numeric_limits<double>::quiet_NaN()),
176  precursor_mz(std::numeric_limits<double>::quiet_NaN()),
177  precursor_charge(0), ms_level(0), scan_number(-1), native_id("")
178  {
179  }
180 
182  SpectrumMetaData(const SpectrumMetaData &) = default;
186  ~SpectrumMetaData() = default;
187 
192  };
193 
196  {}
197 
200 
212  template <typename SpectrumContainer>
213  void readSpectra(const SpectrumContainer& spectra,
214  const String& scan_regexp = default_scan_regexp,
215  bool get_precursor_rt = false)
216  {
217  // If class SpectrumContainer is e.g. OnDiscMSExperiment, reading each
218  // spectrum is expensive. Thus, to avoid iterating over all spectra twice,
219  // we do not call "SpectrumLookup::readSpectra" here:
220  n_spectra_ = spectra.size();
221  metadata_.reserve(n_spectra_);
222  setScanRegExp_(scan_regexp);
223  // mapping: MS level -> RT of previous spectrum of that level
224  std::map<Size, double> precursor_rts;
225  for (Size i = 0; i < n_spectra_; ++i)
226  {
227  const MSSpectrum& spectrum = spectra[i];
228  SpectrumMetaData meta;
229  getSpectrumMetaData(spectrum, meta, scan_regexp_, precursor_rts);
230  if (get_precursor_rt) precursor_rts[meta.ms_level] = meta.rt;
231  addEntry_(i, meta.rt, meta.scan_number, meta.native_id);
232  metadata_.push_back(meta);
233  }
234  }
235 
236 
242  void setSpectraDataRef(const String& spectra_data)
243  {
244  this->spectra_data_ref = spectra_data;
245  }
246 
247 
254  void getSpectrumMetaData(Size index, SpectrumMetaData& meta) const;
255 
266  static void getSpectrumMetaData(
267  const MSSpectrum& spectrum, SpectrumMetaData& meta,
268  const boost::regex& scan_regexp = boost::regex(),
269  const std::map<Size, double>& precursor_rts = (std::map<Size, double>()));
270 
282  void getSpectrumMetaData(const String& spectrum_ref, SpectrumMetaData& meta,
283  MetaDataFlags flags = MDF_ALL) const;
284 
296  static bool addMissingRTsToPeptideIDs(std::vector<PeptideIdentification>& peptides, const String &filename,
297  bool stop_on_error = false);
298 
313  static bool addMissingSpectrumReferences(std::vector<PeptideIdentification>& peptides,
314  const String& filename,
315  bool stop_on_error = false,
316  bool override_spectra_data = false,
317  bool override_spectra_references = false,
318  std::vector<ProteinIdentification> proteins = std::vector<ProteinIdentification>());
319 
320  protected:
321 
322  std::vector<SpectrumMetaData> metadata_;
324 
325  private:
326 
329 
332 
333  };
334 
335 } //namespace OpenMS
336 
The representation of a 1D spectrum.
Definition: MSSpectrum.h:71
Helper class for looking up spectra based on different attributes.
Definition: SpectrumLookup.h:68
Helper class for looking up spectrum meta data.
Definition: SpectrumMetaDataLookup.h:143
SpectrumMetaDataLookup()
Constructor.
Definition: SpectrumMetaDataLookup.h:195
void getSpectrumMetaData(Size index, SpectrumMetaData &meta) const
Look up meta data of a spectrum.
SpectrumMetaDataLookup & operator=(const SpectrumMetaDataLookup &)
Assignment operator (not implemented)
void readSpectra(const SpectrumContainer &spectra, const String &scan_regexp=default_scan_regexp, bool get_precursor_rt=false)
Read spectra and store their meta data.
Definition: SpectrumMetaDataLookup.h:213
static bool addMissingSpectrumReferences(std::vector< PeptideIdentification > &peptides, const String &filename, bool stop_on_error=false, bool override_spectra_data=false, bool override_spectra_references=false, std::vector< ProteinIdentification > proteins=std::vector< ProteinIdentification >())
Add missing "spectrum_reference"s to peptide identifications based on raw data.
~SpectrumMetaDataLookup() override
Destructor.
Definition: SpectrumMetaDataLookup.h:199
std::vector< SpectrumMetaData > metadata_
Meta data for spectra.
Definition: SpectrumMetaDataLookup.h:322
static void getSpectrumMetaData(const MSSpectrum &spectrum, SpectrumMetaData &meta, const boost::regex &scan_regexp=boost::regex(), const std::map< Size, double > &precursor_rts=(std::map< Size, double >()))
Extract meta data from a spectrum.
unsigned char MetaDataFlags
Bit mask for which meta data to extract from a spectrum.
Definition: SpectrumMetaDataLookup.h:147
static bool addMissingRTsToPeptideIDs(std::vector< PeptideIdentification > &peptides, const String &filename, bool stop_on_error=false)
Add missing retention time values to peptide identifications based on raw data.
void setSpectraDataRef(const String &spectra_data)
set spectra_data from read SpectrumContainer origin (i.e. filename)
Definition: SpectrumMetaDataLookup.h:242
void getSpectrumMetaData(const String &spectrum_ref, SpectrumMetaData &meta, MetaDataFlags flags=MDF_ALL) const
Extract meta data via a spectrum reference.
SpectrumMetaDataLookup(const SpectrumMetaDataLookup &)
Copy constructor (not implemented)
String spectra_data_ref
Definition: SpectrumMetaDataLookup.h:323
A more convenient string class.
Definition: String.h:61
int Int
Signed integer type.
Definition: Types.h:102
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
Meta data of a spectrum.
Definition: SpectrumMetaDataLookup.h:163
Int scan_number
Scan number.
Definition: SpectrumMetaDataLookup.h:169
double precursor_rt
Precursor retention time.
Definition: SpectrumMetaDataLookup.h:165
SpectrumMetaData(const SpectrumMetaData &)=default
Copy constructor.
Int precursor_charge
Precursor charge.
Definition: SpectrumMetaDataLookup.h:167
SpectrumMetaData & operator=(const SpectrumMetaData &)=default
Assignment operator.
String native_id
Native ID.
Definition: SpectrumMetaDataLookup.h:170
SpectrumMetaData(SpectrumMetaData &&)=default
Move constructor.
SpectrumMetaData()
Constructor.
Definition: SpectrumMetaDataLookup.h:173
Size ms_level
MS level.
Definition: SpectrumMetaDataLookup.h:168
SpectrumMetaData & operator=(SpectrumMetaData &&) &=default
Move assignment operator.
double rt
Retention time.
Definition: SpectrumMetaDataLookup.h:164
double precursor_mz
Precursor mass-to-charge ratio.
Definition: SpectrumMetaDataLookup.h:166