Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages
XQuestResultXMLFile.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-2017.
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: Lukas Zimmermann $
32 // $Authors: Lukas Zimmermann, Eugen Netz $
33 // --------------------------------------------------------------------------
34 #pragma once
35 
36 #include <OpenMS/FORMAT/XMLFile.h>
41 
42 namespace OpenMS
43 {
44 
45  class OPENMS_DLLAPI XQuestResultXMLFile :
46  public Internal::XMLFile,
47  public ProgressLogger
48  {
49 public:
51  ~XQuestResultXMLFile() override;
52 
59  void load(const String & filename,
60  std::vector< PeptideIdentification > & pep_ids,
61  std::vector< ProteinIdentification > & prot_ids
62  );
63 
69  void store(const String& filename,
70  const std::vector<ProteinIdentification>& poid,
71  const std::vector<PeptideIdentification>& peid) const;
72 
77  int getNumberOfHits() const;
78 
83  double getMinScore() const;
84 
89  double getMaxScore() const;
90 
100  static void writeXQuestXMLSpec(String out_file, String base_name, const OPXLDataStructs::PreprocessedPairSpectra& preprocessed_pair_spectra, const std::vector< std::pair<Size, Size> >& spectrum_pairs, const std::vector< std::vector< OPXLDataStructs::CrossLinkSpectrumMatch > >& all_top_csms, const PeakMap& spectra);
101 
109  static void writeXQuestXMLSpec(String out_file, String base_name, const std::vector< std::vector< OPXLDataStructs::CrossLinkSpectrumMatch > >& all_top_csms, const PeakMap& spectra);
110 
111 
112 
113 private:
119  static String getxQuestBase64EncodedSpectrum_(const PeakSpectrum& spec, String header);
120 
127  static void wrap_(const String& input, Size width, String & output);
128 
129  int n_hits_; // Total number of hits within the result file
130 
131  double min_score_; // Minimum score encountered in file
132  double max_score_; // Maximum score encountered in file
133  };
134 } // namespace OpenMS
A more convenient string class.
Definition: String.h:57
double min_score_
Definition: XQuestResultXMLFile.h:131
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
The representation of a 1D spectrum.
Definition: MSSpectrum.h:66
Definition: XQuestResultXMLFile.h:45
The PreprocessedPairSpectra struct represents the result of comparing a light and a heavy labeled spe...
Definition: OPXLDataStructs.h:281
int n_hits_
Definition: XQuestResultXMLFile.h:129
In-Memory representation of a mass spectrometry experiment.
Definition: MSExperiment.h:77
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
double max_score_
Definition: XQuestResultXMLFile.h:132
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:54
Base class for loading/storing XML files that have a handler derived from XMLHandler.
Definition: XMLFile.h:48

OpenMS / TOPP release 2.3.0 Documentation generated on Wed Apr 18 2018 19:29:09 using doxygen 1.8.14