OpenMS  2.7.0
DBSearchParam.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 
40 
41 namespace OpenMS
42 {
43  namespace IdentificationDataInternal
44  {
48  {
50  enum MassType mass_type;
51 
55 
56  std::set<Int> charges;
57 
58  std::set<String> fixed_mods;
59  std::set<String> variable_mods;
60 
65 
66  // allow for either "DigestionEnzymeProtein" or "DigestionEnzymeRNA":
72 
80  {
81  }
82 
83  DBSearchParam(const DBSearchParam& other) = default;
84 
85  bool operator<(const DBSearchParam& other) const
86  {
87  return (std::tie(molecule_type, mass_type, database,
93  std::tie(other.molecule_type, other.mass_type,
94  other.database, other.database_version, other.taxonomy,
95  other.charges, other.fixed_mods, other.variable_mods,
100  other.digestion_enzyme,
102  other.min_length, other.max_length));
103  }
104 
105  bool operator==(const DBSearchParam& other) const
106  {
107  return (std::tie(molecule_type, mass_type, database,
113  std::tie(other.molecule_type, other.mass_type,
114  other.database, other.database_version, other.taxonomy,
115  other.charges, other.fixed_mods, other.variable_mods,
121  other.missed_cleavages,
122  other.min_length, other.max_length));
123  }
124  };
125 
126  typedef std::set<DBSearchParam> DBSearchParams;
128  typedef std::map<ProcessingStepRef, SearchParamRef> DBSearchSteps;
129 
130  }
131 }
Base class for digestion enzymes.
Definition: DigestionEnzyme.h:53
Class for the enzymatic digestion of sequences.
Definition: EnzymaticDigestion.h:63
Specificity
when querying for valid digestion products, this determines if the specificity of the two peptide end...
Definition: EnzymaticDigestion.h:67
Interface for classes that can store arbitrary meta information (Type-Name-Value tuples).
Definition: MetaInfoInterface.h:61
A more convenient string class.
Definition: String.h:61
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
std::map< ProcessingStepRef, SearchParamRef > DBSearchSteps
Definition: DBSearchParam.h:128
std::set< DBSearchParam > DBSearchParams
Definition: DBSearchParam.h:126
IteratorWrapper< DBSearchParams::iterator > SearchParamRef
Definition: DBSearchParam.h:127
MoleculeType
Definition: MetaData.h:64
@ PROTEIN
Definition: MetaData.h:65
MassType
Definition: MetaData.h:73
@ MONOISOTOPIC
Definition: MetaData.h:74
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
Parameters specific to a database search step.
Definition: DBSearchParam.h:48
bool fragment_tolerance_ppm
Definition: DBSearchParam.h:64
String database_version
Definition: DBSearchParam.h:53
EnzymaticDigestion::Specificity enzyme_term_specificity
Definition: DBSearchParam.h:68
std::set< Int > charges
Definition: DBSearchParam.h:56
String taxonomy
Definition: DBSearchParam.h:54
std::set< String > variable_mods
Definition: DBSearchParam.h:59
std::set< String > fixed_mods
Definition: DBSearchParam.h:58
bool operator<(const DBSearchParam &other) const
Definition: DBSearchParam.h:85
bool precursor_tolerance_ppm
Definition: DBSearchParam.h:63
String database
Definition: DBSearchParam.h:52
enum MassType mass_type
Definition: DBSearchParam.h:50
double fragment_mass_tolerance
Definition: DBSearchParam.h:62
bool operator==(const DBSearchParam &other) const
Definition: DBSearchParam.h:105
Size min_length
Definition: DBSearchParam.h:70
double precursor_mass_tolerance
Definition: DBSearchParam.h:61
enum MoleculeType molecule_type
Definition: DBSearchParam.h:49
Size max_length
Definition: DBSearchParam.h:71
DBSearchParam(const DBSearchParam &other)=default
const DigestionEnzyme * digestion_enzyme
Definition: DBSearchParam.h:67
Size missed_cleavages
Definition: DBSearchParam.h:69
DBSearchParam()
Definition: DBSearchParam.h:73
Wrapper that adds operator< to iterators, so they can be used as (part of) keys in maps/sets or multi...
Definition: MetaData.h:44