OpenMS  2.7.0
ChromatogramExtractorAlgorithm.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: Hannes Roest $
32 // $Authors: Hannes Roest $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
39 
40 namespace OpenMS
41 {
42 
58  class OPENMS_DLLAPI ChromatogramExtractorAlgorithm :
59  public ProgressLogger
60  {
61 
62 public:
63 
65  {
66  double mz = 0.0;
67  double ion_mobility = 0.0;
68  double mz_precursor = 0.0;
69  double rt_start = 0.0;
70  double rt_end = 0.0;
71  std::string id;
72 
76  {
77  return left.mz < right.mz;
78  }
82  {
83  return left.mz > right.mz;
84  }
85  };
86 
103  std::vector< OpenSwath::ChromatogramPtr >& output,
104  const std::vector<ExtractionCoordinates>& extraction_coordinates,
105  double mz_extraction_window,
106  bool ppm,
107  double im_extraction_window,
108  const String& filter);
109 
134  void extract_value_tophat(const std::vector<double>::const_iterator& mz_start,
135  std::vector<double>::const_iterator& mz_it,
136  const std::vector<double>::const_iterator& mz_end,
137  std::vector<double>::const_iterator& int_it,
138  const double mz,
139  double& integrated_intensity,
140  const double mz_extraction_window,
141  const bool ppm);
142 
171  void extract_value_tophat(const std::vector<double>::const_iterator& mz_start,
172  std::vector<double>::const_iterator& mz_it,
173  const std::vector<double>::const_iterator& mz_end,
174  std::vector<double>::const_iterator& int_it,
175  std::vector<double>::const_iterator& im_it,
176  const double mz,
177  const double im,
178  double& integrated_intensity,
179  const double mz_extraction_window,
180  const double im_extraction_window,
181  const bool ppm);
182 
183 private:
184 
185  int getFilterNr_(const String& filter);
186 
187  };
188 
189 }
190 
191 
The ChromatogramExtractorAlgorithm extracts chromatograms from a MS data.
Definition: ChromatogramExtractorAlgorithm.h:60
void extract_value_tophat(const std::vector< double >::const_iterator &mz_start, std::vector< double >::const_iterator &mz_it, const std::vector< double >::const_iterator &mz_end, std::vector< double >::const_iterator &int_it, const double mz, double &integrated_intensity, const double mz_extraction_window, const bool ppm)
Extract the next mz value and add the integrated intensity to integrated_intensity.
void extract_value_tophat(const std::vector< double >::const_iterator &mz_start, std::vector< double >::const_iterator &mz_it, const std::vector< double >::const_iterator &mz_end, std::vector< double >::const_iterator &int_it, std::vector< double >::const_iterator &im_it, const double mz, const double im, double &integrated_intensity, const double mz_extraction_window, const double im_extraction_window, const bool ppm)
Extract the next m/z value and add the integrated intensity to integrated_intensity.
int getFilterNr_(const String &filter)
void extractChromatograms(const OpenSwath::SpectrumAccessPtr input, std::vector< OpenSwath::ChromatogramPtr > &output, const std::vector< ExtractionCoordinates > &extraction_coordinates, double mz_extraction_window, bool ppm, double im_extraction_window, const String &filter)
Extract chromatograms at the m/z and RT defined by the ExtractionCoordinates.
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:55
A more convenient string class.
Definition: String.h:61
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
boost::shared_ptr< ISpectrumAccess > SpectrumAccessPtr
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:87
Definition: ChromatogramExtractorAlgorithm.h:65
double mz
m/z value around which should be extracted
Definition: ChromatogramExtractorAlgorithm.h:66
static bool SortExtractionCoordinatesReverseByMZ(const ChromatogramExtractorAlgorithm::ExtractionCoordinates &left, const ChromatogramExtractorAlgorithm::ExtractionCoordinates &right)
Definition: ChromatogramExtractorAlgorithm.h:79
static bool SortExtractionCoordinatesByMZ(const ChromatogramExtractorAlgorithm::ExtractionCoordinates &left, const ChromatogramExtractorAlgorithm::ExtractionCoordinates &right)
Definition: ChromatogramExtractorAlgorithm.h:73
std::string id
identifier
Definition: ChromatogramExtractorAlgorithm.h:71