OpenMS  3.0.0
EmpiricalFormula.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-2022.
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: Chris Bielow, Ahmed Khalil $
32 // $Authors: Andreas Bertsch, Chris Bielow $
33 // --------------------------------------------------------------------------
34 //
35 #pragma once
36 
37 #include <iosfwd>
38 #include <map>
39 #include <set>
40 #include <string>
41 
42 #include <OpenMS/CONCEPT/Types.h>
43 
44 namespace OpenMS
45 {
46  class String;
47  class Element;
48  class ElementDB;
49  class IsotopeDistribution;
50  class IsotopePatternGenerator;
51  class CoarseIsotopePatternGenerator;
52 
84  class OPENMS_DLLAPI EmpiricalFormula
85  {
86 
87 protected:
89  typedef std::map<const Element*, SignedSize> MapType_;
90 
91 public:
95  typedef MapType_::const_iterator ConstIterator;
97  typedef MapType_::const_iterator const_iterator;
98  typedef MapType_::iterator Iterator;
99  typedef MapType_::iterator iterator;
101 
107 
109  EmpiricalFormula(const EmpiricalFormula&) = default;
110 
112  EmpiricalFormula(EmpiricalFormula&&) = default;
113 
119  explicit EmpiricalFormula(const String& rhs);
120 
122  EmpiricalFormula(SignedSize number, const Element* element, SignedSize charge = 0);
123 
125  virtual ~EmpiricalFormula();
127 
135  static EmpiricalFormula fromString(const String& rhs)
136  {
137  EmpiricalFormula ef(rhs);
138  return ef;
139  }
140 
144  double getMonoWeight() const;
146 
148  double getAverageWeight() const;
149 
151  double calculateTheoreticalIsotopesNumber() const;
152 
166  bool estimateFromWeightAndComp(double average_weight, double C, double H, double N, double O, double S, double P);
167 
181  bool estimateFromMonoWeightAndComp(double mono_weight, double C, double H, double N, double O, double S, double P);
182 
197  bool estimateFromWeightAndCompAndS(double average_weight, UInt S, double C, double H, double N, double O, double P);
198 
199 
207  IsotopeDistribution getIsotopeDistribution(const IsotopePatternGenerator& method) const;
208 
219  IsotopeDistribution getConditionalFragmentIsotopeDist(const EmpiricalFormula& precursor,
220  const std::set<UInt>& precursor_isotopes,
221  const CoarseIsotopePatternGenerator& method) const;
222 
224  SignedSize getNumberOf(const Element* element) const;
225 
227  SignedSize getNumberOfAtoms() const;
228 
230  Int getCharge() const;
231 
233  void setCharge(Int charge);
234 
236  String toString() const;
237 
239  std::map<std::string, int> toMap() const;
241 
245 
247  EmpiricalFormula& operator=(const EmpiricalFormula&) = default;
248 
250  EmpiricalFormula& operator=(EmpiricalFormula&&) & = default;
251 
253  EmpiricalFormula& operator+=(const EmpiricalFormula& rhs);
254 
256  EmpiricalFormula operator*(const SignedSize& times) const;
257 
259  EmpiricalFormula operator+(const EmpiricalFormula& rhs) const;
260 
262  EmpiricalFormula& operator-=(const EmpiricalFormula& rhs);
263 
265  EmpiricalFormula operator-(const EmpiricalFormula& rhs) const;
266 
268 
272  bool isEmpty() const;
274 
276  bool isCharged() const;
277 
279  bool hasElement(const Element* element) const;
280 
282  bool contains(const EmpiricalFormula& ef) const;
283 
285  bool operator==(const EmpiricalFormula& rhs) const;
286 
288  bool operator!=(const EmpiricalFormula& rhs) const;
289 
291  bool operator<(const EmpiricalFormula& rhs) const;
292 
294 
296  friend OPENMS_DLLAPI std::ostream& operator<<(std::ostream& os, const EmpiricalFormula& formula);
297 
301  inline ConstIterator begin() const { return formula_.begin(); }
302 
303  inline ConstIterator end() const { return formula_.end(); }
304 
305  inline Iterator begin() { return formula_.begin(); }
306 
307  inline Iterator end() { return formula_.end(); }
309 
312  // @TODO: make these static member variables instead?
314  static EmpiricalFormula hydrogen(int n_atoms = 1);
316 
318  static EmpiricalFormula water(int n_molecules = 1);
320 
321 protected:
322 
324  void removeZeroedElements_();
325 
327 
329 
330  Int parseFormula_(std::map<const Element*, SignedSize>& ef, const String& formula) const;
331 
332  };
333 
334  OPENMS_DLLAPI std::ostream& operator<<(std::ostream& os, const EmpiricalFormula& formula);
335 
336 } // namespace OpenMS
const std::string & toString(const DriftTimeUnit value)
A more convenient string class.
Definition: String.h:58
Isotope pattern generator for coarse isotope distributions.
Definition: CoarseIsotopePatternGenerator.h:103
ConstIterator begin() const
Definition: EmpiricalFormula.h:301
unsigned int UInt
Unsigned integer type.
Definition: Types.h:94
Definition: IsotopeDistribution.h:64
ptrdiff_t SignedSize
Signed Size type e.g. used as pointer difference.
Definition: Types.h:134
MapType_::const_iterator ConstIterator
Iterators.
Definition: EmpiricalFormula.h:96
bool operator==(const IDBoostGraph::ProteinGroup &lhs, const IDBoostGraph::ProteinGroup &rhs)
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
MapType_ formula_
Definition: EmpiricalFormula.h:326
ConstIterator end() const
Definition: EmpiricalFormula.h:303
bool operator<(const MultiplexDeltaMasses &dm1, const MultiplexDeltaMasses &dm2)
Representation of an empirical formula.
Definition: EmpiricalFormula.h:84
Representation of an element.
Definition: Element.h:57
MapType_::iterator iterator
Definition: EmpiricalFormula.h:99
FS_TV operator+(const TV_STATUS left, const TV_STATUS right)
allow + operations on the enum, e.g. &#39;HAS_CANVAS + HAS_LAYER + IS_1D_VIEW&#39;
MapType_::iterator Iterator
Definition: EmpiricalFormula.h:98
Iterator begin()
Definition: EmpiricalFormula.h:305
MapType_::const_iterator const_iterator
Definition: EmpiricalFormula.h:97
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)
DPosition< D, TCoordinateType > operator*(DPosition< D, TCoordinateType > position, typename DPosition< D, TCoordinateType >::CoordinateType scalar)
Scalar multiplication (a bit inefficient)
Definition: DPosition.h:437
Iterator end()
Definition: EmpiricalFormula.h:307
Int charge_
Definition: EmpiricalFormula.h:328
static String number(double d, UInt n)
Definition: StringUtils.h:217
static EmpiricalFormula fromString(const String &rhs)
create EmpiricalFormular object by parsing an OpenMS string
Definition: EmpiricalFormula.h:135
bool operator!=(_Iterator< _Val, _Ref, _Ptr > const &, _Iterator< _Val, _Ref, _Ptr > const &)
Definition: KDTree.h:824
std::map< const Element *, SignedSize > MapType_
Internal typedef for the used map type.
Definition: EmpiricalFormula.h:89
bool contains(T value, T min, T max)
Is a value contained in [min, max] ?
Definition: MathFunctions.h:88
int Int
Signed integer type.
Definition: Types.h:102
Provides an interface for different isotope pattern generator methods.
Definition: IsotopePatternGenerator.h:67