OpenMS  2.7.0
PepXMLFile.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: Chris Bielow, Hendrik Weisser $
32 // $Authors: Chris Bielow, Hendrik Weisser $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
41 #include <OpenMS/FORMAT/XMLFile.h>
45 
46 #include <vector>
47 #include <map>
48 #include <set>
49 
50 
51 namespace OpenMS
52 {
63  class OPENMS_DLLAPI PepXMLFile :
64  protected Internal::XMLHandler,
65  public Internal::XMLFile
66  {
67 public:
68 
71 
73  ~PepXMLFile() override;
74 
87  void load(const String& filename,
88  std::vector<ProteinIdentification>& proteins,
89  std::vector<PeptideIdentification>& peptides,
90  const String& experiment_name,
91  const SpectrumMetaDataLookup& lookup);
92 
99  void load(const String& filename,
100  std::vector<ProteinIdentification>& proteins,
101  std::vector<PeptideIdentification>& peptides,
102  const String& experiment_name = "");
103 
109  void store(const String& filename, std::vector<ProteinIdentification>& protein_ids,
110  std::vector<PeptideIdentification>& peptide_ids, const String& mz_file = "",
111  const String& mz_name = "", bool peptideprophet_analyzed = false, double rt_tolerance = 0.01);
112 
120  void keepNativeSpectrumName(bool keep)
121  {
122  keep_native_name_ = keep;
123  }
124 
126  void setPreferredFixedModifications(const std::vector<const ResidueModification*>& mods);
127 
129  void setPreferredVariableModifications(const std::vector<const ResidueModification*>& mods);
130 
131 protected:
132 
134  void endElement(const XMLCh* const /*uri*/, const XMLCh* const /*local_name*/, const XMLCh* const qname) override;
135 
137  void startElement(const XMLCh* const /*uri*/, const XMLCh* const /*local_name*/, const XMLCh* const qname, const xercesc::Attributes& attributes) override;
138 
139 private:
140 
142  void makeScanMap_();
143 
145  void readRTMZCharge_(const xercesc::Attributes& attributes);
146 
148  {
149  private:
150 
152  double massdiff_;
153  double mass_;
157  bool is_protein_terminus_; // "true" if protein terminus, "false" if peptide terminus
159  std::vector<String> errors_;
161 
162  const ResidueModification* lookupModInPreferredMods_(const std::vector<const ResidueModification*>& preferred_fixed_mods,
163  const String& aminoacid,
164  double massdiff,
165  const String& description,
166  const ResidueModification::TermSpecificity term_spec,
167  double tolerance);
168 
169  public:
171 
177  const String& aminoacid, const String& massdiff, const String& mass,
178  String variable, const String& description, String terminus, const String& protein_terminus,
179  const std::vector<const ResidueModification*>& preferred_fixed_mods,
180  const std::vector<const ResidueModification*>& preferred_var_mods,
181  double tolerance);
182 
184 
185  virtual ~AminoAcidModification() = default;
186 
188 
190 
191  const String& getDescription() const;
192 
193  bool isVariable() const;
194 
196 
197  double getMassDiff() const;
198 
199  double getMass() const;
200 
201  const String& getTerminus() const;
202 
203  const String& getAminoAcid() const;
204 
205  const std::vector<String>& getErrors() const;
206  };
207 
209  std::vector<ProteinIdentification>* proteins_;
210 
212  std::vector<PeptideIdentification>* peptides_;
213 
216 
219 
222 
228 
230  bool use_precursor_data_{};
231 
233  std::map<Size, Size> scan_map_;
234 
237 
240 
243 
246 
248  bool search_summary_{};
249 
251  bool wrong_experiment_{};
252 
254  bool seen_experiment_{};
255 
257  bool checked_base_name_{};
258 
260  bool has_decoys_{};
261 
264 
267 
269  std::vector<std::vector<ProteinIdentification>::iterator> current_proteins_;
270 
273 
277 
280 
283 
286 
289 
291  double rt_{}, mz_{};
292 
294  Int charge_{};
295 
297  UInt search_id_{};
298 
301 
304 
306  double hydrogen_mass_{};
307 
309  std::vector<std::pair<const ResidueModification*, Size> > current_modifications_;
310 
312  std::vector<AminoAcidModification> fixed_modifications_;
313 
315  std::vector<AminoAcidModification> variable_modifications_;
316 
319  std::vector<const ResidueModification*> preferred_fixed_modifications_;
320 
323  std::vector<const ResidueModification*> preferred_variable_modifications_;
324 
326 
327  static const double mod_tol_;
328  static const double xtandem_artificial_mod_tol_;
329 
332  bool lookupAddFromHeader_(double modification_mass,
333  Size modification_position,
334  std::vector<AminoAcidModification> const& header_mods);
335  };
336 } // namespace OpenMS
DateTime Class.
Definition: DateTime.h:55
Representation of an element.
Definition: Element.h:56
Base class for loading/storing XML files that have a handler derived from XMLHandler.
Definition: XMLFile.h:49
Base class for XML handlers.
Definition: XMLHandler.h:327
Used to load and store PepXML files.
Definition: PepXMLFile.h:66
static const double xtandem_artificial_mod_tol_
Definition: PepXMLFile.h:328
bool search_score_summary_
Are we currently in an "search_score_summary" element (should be skipped)?
Definition: PepXMLFile.h:245
String exp_name_
Name of the associated experiment (filename of the data file, extension will be removed)
Definition: PepXMLFile.h:218
String current_base_name_
current base name
Definition: PepXMLFile.h:266
void store(const String &filename, std::vector< ProteinIdentification > &protein_ids, std::vector< PeptideIdentification > &peptide_ids, const String &mz_file="", const String &mz_name="", bool peptideprophet_analyzed=false, double rt_tolerance=0.01)
Stores idXML as PepXML file.
static const double mod_tol_
Definition: PepXMLFile.h:327
void load(const String &filename, std::vector< ProteinIdentification > &proteins, std::vector< PeptideIdentification > &peptides, const String &experiment_name="")
load function with empty defaults for some parameters (see above)
String current_sequence_
Sequence of the current peptide hit.
Definition: PepXMLFile.h:288
PeptideHit peptide_hit_
PeptideHit instance currently being processed.
Definition: PepXMLFile.h:285
std::vector< AminoAcidModification > variable_modifications_
Variable aminoacid modifications as parsed from the header.
Definition: PepXMLFile.h:315
void keepNativeSpectrumName(bool keep)
Whether we should keep the native spectrum name of the pepXML.
Definition: PepXMLFile.h:120
PeptideIdentification current_peptide_
PeptideIdentification instance currently being processed.
Definition: PepXMLFile.h:279
String search_engine_
Set name of search engine.
Definition: PepXMLFile.h:221
std::vector< std::pair< const ResidueModification *, Size > > current_modifications_
The modifications of the current peptide hit (position is 1-based)
Definition: PepXMLFile.h:309
String enzyme_
Enzyme name associated with the current identification run.
Definition: PepXMLFile.h:275
String enzyme_cuttingsite_
Definition: PepXMLFile.h:276
std::vector< std::vector< ProteinIdentification >::iterator > current_proteins_
References to currently active ProteinIdentifications.
Definition: PepXMLFile.h:269
std::vector< PeptideIdentification > * peptides_
Pointer to the list of identified peptides.
Definition: PepXMLFile.h:212
std::vector< const ResidueModification * > preferred_fixed_modifications_
Definition: PepXMLFile.h:319
~PepXMLFile() override
Destructor.
PeptideHit::PepXMLAnalysisResult current_analysis_result_
Analysis result instance currently being processed.
Definition: PepXMLFile.h:282
std::vector< const ResidueModification * > preferred_variable_modifications_
Definition: PepXMLFile.h:323
bool analysis_summary_
Are we currently in an "analysis_summary" element (should be skipped)?
Definition: PepXMLFile.h:239
const SpectrumMetaDataLookup * lookup_
Pointer to wrapper for looking up spectrum meta data.
Definition: PepXMLFile.h:215
String native_spectrum_name_
Several optional attributes of spectrum_query.
Definition: PepXMLFile.h:224
PepXMLFile()
Constructor.
String prot_id_
Identifier linking PeptideIdentifications and ProteinIdentifications.
Definition: PepXMLFile.h:300
void startElement(const XMLCh *const, const XMLCh *const, const XMLCh *const qname, const xercesc::Attributes &attributes) override
Docu in base class.
bool keep_native_name_
Whether we should keep the native spectrum name of the pepXML.
Definition: PepXMLFile.h:242
std::vector< ProteinIdentification > * proteins_
Pointer to the list of identified proteins.
Definition: PepXMLFile.h:209
DateTime date_
Date the pepXML file was generated.
Definition: PepXMLFile.h:303
std::vector< AminoAcidModification > fixed_modifications_
Fixed aminoacid modifications as parsed from the header.
Definition: PepXMLFile.h:312
String decoy_prefix_
In case it has decoys, what is the prefix?
Definition: PepXMLFile.h:263
String swath_assay_
Definition: PepXMLFile.h:226
bool lookupAddFromHeader_(double modification_mass, Size modification_position, std::vector< AminoAcidModification > const &header_mods)
Element hydrogen_
Hydrogen data (for mass types)
Definition: PepXMLFile.h:236
String experiment_label_
Definition: PepXMLFile.h:225
void load(const String &filename, std::vector< ProteinIdentification > &proteins, std::vector< PeptideIdentification > &peptides, const String &experiment_name, const SpectrumMetaDataLookup &lookup)
Loads peptide sequences with modifications out of a PepXML file.
ProteinIdentification::SearchParameters params_
Search parameters of the current identification run.
Definition: PepXMLFile.h:272
String status_
Definition: PepXMLFile.h:227
void readRTMZCharge_(const xercesc::Attributes &attributes)
Read RT, m/z, charge information from attributes of "spectrum_query".
void setPreferredFixedModifications(const std::vector< const ResidueModification * > &mods)
sets the preferred fixed modifications
void endElement(const XMLCh *const, const XMLCh *const, const XMLCh *const qname) override
Docu in base class.
std::map< Size, Size > scan_map_
Mapping between scan number in the pepXML file and index in the corresponding MSExperiment.
Definition: PepXMLFile.h:233
void setPreferredVariableModifications(const std::vector< const ResidueModification * > &mods)
sets the preferred variable modifications
void makeScanMap_()
Fill scan_map_.
Analysis Result (containing search engine / prophet results)
Definition: PeptideHit.h:176
Representation of a peptide hit.
Definition: PeptideHit.h:57
Represents the peptide hits for a spectrum.
Definition: PeptideIdentification.h:65
Representation of a modification.
Definition: ResidueModification.h:77
TermSpecificity
Position where the modification is allowed to occur.
Definition: ResidueModification.h:96
Helper class for looking up spectrum meta data.
Definition: SpectrumMetaDataLookup.h:143
A more convenient string class.
Definition: String.h:61
int Int
Signed integer type.
Definition: Types.h:102
unsigned int UInt
Unsigned integer type.
Definition: Types.h:94
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
Definition: PepXMLFile.h:148
std::vector< String > errors_
Definition: PepXMLFile.h:159
double massdiff_
Definition: PepXMLFile.h:152
double mass_
Definition: PepXMLFile.h:153
String aminoacid_
Definition: PepXMLFile.h:151
bool is_protein_terminus_
Definition: PepXMLFile.h:157
String description_
Definition: PepXMLFile.h:155
const ResidueModification * registered_mod_
Definition: PepXMLFile.h:160
AminoAcidModification(const String &aminoacid, const String &massdiff, const String &mass, String variable, const String &description, String terminus, const String &protein_terminus, const std::vector< const ResidueModification * > &preferred_fixed_mods, const std::vector< const ResidueModification * > &preferred_var_mods, double tolerance)
AminoAcidModification(const AminoAcidModification &rhs)=default
ResidueModification::TermSpecificity term_spec_
Definition: PepXMLFile.h:158
const ResidueModification * lookupModInPreferredMods_(const std::vector< const ResidueModification * > &preferred_fixed_mods, const String &aminoacid, double massdiff, const String &description, const ResidueModification::TermSpecificity term_spec, double tolerance)
const std::vector< String > & getErrors() const
const ResidueModification * getRegisteredMod() const
AminoAcidModification & operator=(const AminoAcidModification &rhs)=default
bool is_variable_
Definition: PepXMLFile.h:154
String terminus_
Definition: PepXMLFile.h:156
Search parameters of the DB search.
Definition: ProteinIdentification.h:260