OpenMS
OMSSAXMLFile.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-2023.
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: Andreas Bertsch $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
38 #include <OpenMS/FORMAT/XMLFile.h>
43 
44 #include <vector>
45 
46 namespace OpenMS
47 {
48  class String;
49  class ModificationsDB;
50 
59  class OPENMS_DLLAPI OMSSAXMLFile :
60  protected Internal::XMLHandler,
61  public Internal::XMLFile
62  {
63 public:
64 
67 
69  ~OMSSAXMLFile() override;
87  void load(const String& filename,
88  ProteinIdentification& protein_identification,
89  std::vector<PeptideIdentification>& id_data,
90  bool load_proteins = true,
91  bool load_empty_hits = true);
92 
95 
96 protected:
97  // Docu in base class
98  void endElement(const XMLCh* const /*uri*/, const XMLCh* const /*local_name*/, const XMLCh* const qname) override;
99 
100  // Docu in base class
101  void startElement(const XMLCh* const /*uri*/, const XMLCh* const /*local_name*/, const XMLCh* const qname, const xercesc::Attributes& attributes) override;
102 
103  // Docu in base class
104  void characters(const XMLCh* const chars, const XMLSize_t /*length*/) override;
105 
106 private:
107 
109 
111 
114 
116  std::vector<PeptideIdentification>* peptide_identifications_;
117 
119 
121 
123 
124  std::vector<PeptideEvidence> actual_peptide_evidences_;
125 
127 
129 
131 
134 
137 
139  std::vector<std::pair<UInt, String> > modifications_;
140 
143 
146 
148  std::map<UInt, std::vector<const ResidueModification*> > mods_map_;
149 
151  std::map<String, UInt> mods_to_num_;
152 
155  };
156 
157 } // namespace OpenMS
158 
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:326
Representation of a set of modification definitions.
Definition: ModificationDefinitionsSet.h:59
Used to load OMSSAXML files.
Definition: OMSSAXMLFile.h:62
OMSSAXMLFile & operator=(const OMSSAXMLFile &rhs)
std::vector< PeptideEvidence > actual_peptide_evidences_
Definition: OMSSAXMLFile.h:124
PeptideEvidence actual_peptide_evidence_
Definition: OMSSAXMLFile.h:122
void readMappingFile_()
reads the mapping file needed for modifications
ProteinIdentification actual_protein_id_
Definition: OMSSAXMLFile.h:128
PeptideIdentification actual_peptide_id_
Definition: OMSSAXMLFile.h:126
std::map< UInt, std::vector< const ResidueModification * > > mods_map_
modifications mapping file from OMSSA mod num to UniMod accession
Definition: OMSSAXMLFile.h:148
PeptideHit actual_peptide_hit_
Definition: OMSSAXMLFile.h:120
std::vector< PeptideIdentification > * peptide_identifications_
the identifications (storing the peptide hits)
Definition: OMSSAXMLFile.h:116
String tag_
Definition: OMSSAXMLFile.h:130
ModificationDefinitionsSet mod_def_set_
modification definitions set of the search, needed to annotate fixed modifications
Definition: OMSSAXMLFile.h:154
std::map< String, UInt > mods_to_num_
modification mapping reverse, from the modification to the mod_num
Definition: OMSSAXMLFile.h:151
OMSSAXMLFile()
Default constructor.
OMSSAXMLFile(const OMSSAXMLFile &rhs)
ProteinHit actual_protein_hit_
Definition: OMSSAXMLFile.h:118
bool load_empty_hits_
should empty peptide identifications be loaded or skipped?
Definition: OMSSAXMLFile.h:145
void startElement(const XMLCh *const, const XMLCh *const, const XMLCh *const qname, const xercesc::Attributes &attributes) override
String actual_mod_type_
type of the modification
Definition: OMSSAXMLFile.h:136
void setModificationDefinitionsSet(const ModificationDefinitionsSet &rhs)
sets the valid modifications
bool load_proteins_
should protein hits be read from the file?
Definition: OMSSAXMLFile.h:142
void characters(const XMLCh *const chars, const XMLSize_t) override
std::vector< std::pair< UInt, String > > modifications_
modifications of the peptide defined by site and type
Definition: OMSSAXMLFile.h:139
~OMSSAXMLFile() override
Destructor.
void endElement(const XMLCh *const, const XMLCh *const, const XMLCh *const qname) override
UInt actual_mod_site_
site of the actual modification (simple position in the peptide)
Definition: OMSSAXMLFile.h:133
Representation of a peptide evidence.
Definition: PeptideEvidence.h:51
Representation of a peptide hit.
Definition: PeptideHit.h:57
Represents the peptide hits for a spectrum.
Definition: PeptideIdentification.h:65
Representation of a protein hit.
Definition: ProteinHit.h:60
Representation of a protein identification run.
Definition: ProteinIdentification.h:76
A more convenient string class.
Definition: String.h:60
unsigned int UInt
Unsigned integer type.
Definition: Types.h:94
void load(const String &filename, ProteinIdentification &protein_identification, std::vector< PeptideIdentification > &id_data, bool load_proteins=true, bool load_empty_hits=true)
loads data from a OMSSAXML file
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:48
Returns a pointer to a modified residue given a residue and a pointer to a modification from the.