OpenMS  2.8.0
IDRipper.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: Timo Sachsenberg$
32 // $Authors: Immanuel Luhn, Leon Kuchenbecker$
33 // --------------------------------------------------------------------------
34 #pragma once
35 
39 
40 
41 namespace OpenMS
42 {
52  class OPENMS_DLLAPI IDRipper :
53  public DefaultParamHandler
54  {
55 public:
57  enum OriginAnnotationFormat { FILE_ORIGIN = 0, MAP_INDEX = 1, ID_MERGE_INDEX = 2, UNKNOWN_OAF = 3, SIZE_OF_ORIGIN_ANNOTATION_FORMAT = 4 };
58 
60  static const std::array<std::string, SIZE_OF_ORIGIN_ANNOTATION_FORMAT> names_of_OriginAnnotationFormat;
61 
63  struct OPENMS_DLLAPI IdentificationRuns
64  {
66  std::map<String, UInt> index_map;
68  std::vector<StringList> spectra_data;
69 
71  IdentificationRuns(const std::vector<ProteinIdentification>& prot_ids);
72  };
73 
75  struct OPENMS_DLLAPI RipFileIdentifier
76  {
85 
87  RipFileIdentifier(const IDRipper::IdentificationRuns& id_runs, const PeptideIdentification& pep_id, const std::map<String, UInt>& file_origin_map, const IDRipper::OriginAnnotationFormat origin_annotation_fmt, bool split_ident_runs);
88 
91 
94 
97 
100  };
101 
104  {
105  bool operator()(const RipFileIdentifier& left, const RipFileIdentifier& right) const;
106  };
107 
109  struct OPENMS_DLLAPI RipFileContent
110  {
112  std::vector<ProteinIdentification> prot_idents;
114  std::vector<PeptideIdentification> pep_idents;
116  RipFileContent(const std::vector<ProteinIdentification>& prot_idents, const std::vector<PeptideIdentification>& pep_idents)
117  : prot_idents(prot_idents), pep_idents(pep_idents) {}
119  const std::vector<ProteinIdentification> & getProteinIdentifications();
121  const std::vector<PeptideIdentification> & getPeptideIdentifications();
122  };
123 
125  typedef std::map<RipFileIdentifier, RipFileContent, RipFileIdentifierIdxComparator> RipFileMap;
126 
129 
131  ~IDRipper() override;
132 
145  void rip(
146  RipFileMap& ripped,
147  std::vector<ProteinIdentification>& proteins,
148  std::vector<PeptideIdentification>& peptides,
149  bool numeric_filenames,
150  bool split_ident_runs);
151 
164  // Autowrap compatible wrapper for rip(RipFileMap,...)
165  void rip(
166  std::vector<RipFileIdentifier> & rfis,
167  std::vector<RipFileContent> & rfcs,
168  std::vector<ProteinIdentification>& proteins,
169  std::vector<PeptideIdentification>& peptides,
170  bool numeric_filenames,
171  bool split_ident_runs);
172 
173 private:
174  // Not implemented
176  IDRipper(const IDRipper & rhs);
177 
178  // Not implemented
180  IDRipper & operator=(const IDRipper & rhs);
181 
183  OriginAnnotationFormat detectOriginAnnotationFormat_(std::map<String, UInt> & file_origin_map, const std::vector<PeptideIdentification> & peptide_idents);
185  void getProteinHits_(std::vector<ProteinHit> & result, const std::vector<ProteinHit> & protein_hits, const std::vector<String> & protein_accessions);
187  void getProteinAccessions_(std::vector<String> & result, const std::vector<PeptideHit> & peptide_hits);
189  void getProteinIdentification_(ProteinIdentification & result, PeptideIdentification pep_ident, std::vector<ProteinIdentification> & prot_idents);
191  bool registerBasename_(std::map<String, std::pair<UInt, UInt> >& basename_to_numeric, const IDRipper::RipFileIdentifier& rfi);
193  bool setOriginAnnotationMode_(short& mode, short const new_value);
194  };
195 
196 } // namespace OpenMS
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:93
Ripping protein/peptide identification according their file origin.
Definition: IDRipper.h:54
bool registerBasename_(std::map< String, std::pair< UInt, UInt > > &basename_to_numeric, const IDRipper::RipFileIdentifier &rfi)
helper function, register a potential output file basename to detect duplicate output basenames
void rip(RipFileMap &ripped, std::vector< ProteinIdentification > &proteins, std::vector< PeptideIdentification > &peptides, bool numeric_filenames, bool split_ident_runs)
Ripping protein/peptide identification according their file origin.
IDRipper()
Default constructor.
~IDRipper() override
Destructor.
static const std::array< std::string, SIZE_OF_ORIGIN_ANNOTATION_FORMAT > names_of_OriginAnnotationFormat
String representations for the OriginAnnotationFormat enum.
Definition: IDRipper.h:60
void getProteinHits_(std::vector< ProteinHit > &result, const std::vector< ProteinHit > &protein_hits, const std::vector< String > &protein_accessions)
helper function, extracts all protein hits that match the protein accession
OriginAnnotationFormat detectOriginAnnotationFormat_(std::map< String, UInt > &file_origin_map, const std::vector< PeptideIdentification > &peptide_idents)
helper function, detects file origin annotation standard from collections of protein and peptide hits
std::map< RipFileIdentifier, RipFileContent, RipFileIdentifierIdxComparator > RipFileMap
Represents the result of an IDRipper process, a map assigning file content to output file identifiers...
Definition: IDRipper.h:125
void getProteinAccessions_(std::vector< String > &result, const std::vector< PeptideHit > &peptide_hits)
helper function, returns the string representation of the peptide hit accession
OriginAnnotationFormat
Possible input file encodings for the origin as used by different versions of IDMerger.
Definition: IDRipper.h:57
IDRipper(const IDRipper &rhs)
Copy constructor.
bool setOriginAnnotationMode_(short &mode, short const new_value)
helper function, sets the value of mode to new_value and returns true if the old value was identical ...
void rip(std::vector< RipFileIdentifier > &rfis, std::vector< RipFileContent > &rfcs, std::vector< ProteinIdentification > &proteins, std::vector< PeptideIdentification > &peptides, bool numeric_filenames, bool split_ident_runs)
Ripping protein/peptide identification according their file origin.
IDRipper & operator=(const IDRipper &rhs)
Assignment.
void getProteinIdentification_(ProteinIdentification &result, PeptideIdentification pep_ident, std::vector< ProteinIdentification > &prot_idents)
helper function, returns the protein identification for the given peptide identification based on the...
Represents the peptide hits for a spectrum.
Definition: PeptideIdentification.h:65
Representation of a protein identification run.
Definition: ProteinIdentification.h:72
A more convenient string class.
Definition: String.h:60
unsigned int UInt
Unsigned integer type.
Definition: Types.h:94
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
Represents a set of IdentificationRuns.
Definition: IDRipper.h:64
IdentificationRuns(const std::vector< ProteinIdentification > &prot_ids)
Generates a new IdentificationRuns object from a vector of ProteinIdentification objects.
std::vector< StringList > spectra_data
Maps the list of spectra data elements to every IdentificationRun index.
Definition: IDRipper.h:68
std::map< String, UInt > index_map
Maps a unique index to every IdentificationRun string representation (getIdentifier()).
Definition: IDRipper.h:66
Represents the content of an IDRipper output file.
Definition: IDRipper.h:110
const std::vector< ProteinIdentification > & getProteinIdentifications()
Get protein identifications.
std::vector< PeptideIdentification > pep_idents
Peptide identifications.
Definition: IDRipper.h:114
RipFileContent(const std::vector< ProteinIdentification > &prot_idents, const std::vector< PeptideIdentification > &pep_idents)
Constructs a new RipFileContent object.
Definition: IDRipper.h:116
const std::vector< PeptideIdentification > & getPeptideIdentifications()
Get peptide identifications.
std::vector< ProteinIdentification > prot_idents
Protein identifications.
Definition: IDRipper.h:112
Provides a 'less' operation for RipFileIdentifiers that ignores the out_basename and origin_fullname ...
Definition: IDRipper.h:104
bool operator()(const RipFileIdentifier &left, const RipFileIdentifier &right) const
Identifies an IDRipper output file.
Definition: IDRipper.h:76
RipFileIdentifier(const IDRipper::IdentificationRuns &id_runs, const PeptideIdentification &pep_id, const std::map< String, UInt > &file_origin_map, const IDRipper::OriginAnnotationFormat origin_annotation_fmt, bool split_ident_runs)
Constructs a new RipFileIdentifier object.
String out_basename
The output basename derived from the file_origin / spectra_data element.
Definition: IDRipper.h:82
UInt ident_run_idx
The numerical index of the source IdentificationRun.
Definition: IDRipper.h:78
const String & getOutputBasename()
Get output base name.
const String & getOriginFullname()
Get origin full name.
String origin_fullname
The full length origin read from the file_origin / spectra_data element.
Definition: IDRipper.h:84
UInt getIdentRunIdx()
Get identification run index.
UInt getFileOriginIdx()
Get file origin index.
UInt file_origin_idx
The numerical index of the source file_origin / spectra_data element.
Definition: IDRipper.h:80