OpenMS  2.7.0
DataProcessing.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: Timo Sachsenberg $
32 // $Authors: Marc Sturm $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
40 
41 #include <set>
42 #include <boost/shared_ptr.hpp>
43 
44 namespace OpenMS
45 {
51  class OPENMS_DLLAPI DataProcessing :
52  public MetaInfoInterface
53  {
54 
55 public:
56 
57  //The different processing types
59  {
80  SIZE_OF_PROCESSINGACTION
81  };
83  static const std::string NamesOfProcessingAction[SIZE_OF_PROCESSINGACTION];
84 
86  DataProcessing() = default;
88  DataProcessing(const DataProcessing &) = default;
89 
90  // note: we implement the move constructor ourselves due to a bug in MSVS
91  // 2015/2017 which cannot produce a default move constructor for classes
92  // that contain STL containers (other than vector).
93 
98 
100  DataProcessing & operator=(const DataProcessing &) = default;
102  DataProcessing& operator=(DataProcessing&&) & = default;
103 
105  bool operator==(const DataProcessing & rhs) const;
107  bool operator!=(const DataProcessing & rhs) const;
108 
110  const Software & getSoftware() const;
112  Software & getSoftware();
114  void setSoftware(const Software & software);
115 
117  const std::set<ProcessingAction> & getProcessingActions() const;
119  std::set<ProcessingAction> & getProcessingActions();
121  void setProcessingActions(const std::set<ProcessingAction> & actions);
122 
124  const DateTime & getCompletionTime() const;
126  void setCompletionTime(const DateTime & completion_time);
127 
128 protected:
129 
130  Software software_;
131  std::set<ProcessingAction> processing_actions_;
132  DateTime completion_time_;
133  };
134 
135  typedef boost::shared_ptr<DataProcessing> DataProcessingPtr;
136  typedef boost::shared_ptr<const DataProcessing> ConstDataProcessingPtr;
137 
138 } // namespace OpenMS
139 
Description of the applied preprocessing steps.
Definition: DataProcessing.h:53
DataProcessing(const DataProcessing &)=default
Copy constructor.
DataProcessing(DataProcessing &&) noexcept
Move constructor.
DataProcessing()=default
Constructor.
ProcessingAction
Definition: DataProcessing.h:59
@ CALIBRATION
Calibration of m/z positions.
Definition: DataProcessing.h:69
@ NORMALIZATION
Normalization of intensity values.
Definition: DataProcessing.h:70
@ IDENTIFICATION_MAPPING
Identification mapping
Definition: DataProcessing.h:74
@ DEISOTOPING
Deisotoping.
Definition: DataProcessing.h:62
@ PEAK_PICKING
Peak picking (conversion from raw to peak data)
Definition: DataProcessing.h:67
@ PRECURSOR_RECALCULATION
Recalculation of precursor m/z.
Definition: DataProcessing.h:65
@ FEATURE_GROUPING
Feature grouping
Definition: DataProcessing.h:73
@ ALIGNMENT
Retention time alignment of different maps.
Definition: DataProcessing.h:68
@ FILTERING
Data filtering or extraction.
Definition: DataProcessing.h:71
@ CONVERSION_DTA
Conversion to DTA format.
Definition: DataProcessing.h:79
@ FORMAT_CONVERSION
General file format conversion (if no other term applies)
Definition: DataProcessing.h:75
@ CONVERSION_MZML
Conversion to mzML format.
Definition: DataProcessing.h:77
@ CONVERSION_MZXML
Conversion to mzXML format.
Definition: DataProcessing.h:78
@ CONVERSION_MZDATA
Conversion to mzData format.
Definition: DataProcessing.h:76
@ QUANTITATION
Quantitation.
Definition: DataProcessing.h:72
@ SMOOTHING
Smoothing of the signal to reduce noise.
Definition: DataProcessing.h:63
@ CHARGE_DECONVOLUTION
Charge deconvolution.
Definition: DataProcessing.h:61
@ DATA_PROCESSING
General data processing (if no other term applies)
Definition: DataProcessing.h:60
@ BASELINE_REDUCTION
Baseline reduction.
Definition: DataProcessing.h:66
@ CHARGE_CALCULATION
Determination of the peak charge.
Definition: DataProcessing.h:64
DateTime Class.
Definition: DateTime.h:55
Interface for classes that can store arbitrary meta information (Type-Name-Value tuples).
Definition: MetaInfoInterface.h:61
Description of the software used for processing.
Definition: Software.h:50
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
boost::shared_ptr< DataProcessing > DataProcessingPtr
Definition: DataProcessing.h:135
boost::shared_ptr< const DataProcessing > ConstDataProcessingPtr
Definition: DataProcessing.h:136