28 const std::vector<ProteinIdentification>& proteins,
37 std::vector<ProteinIdentification>& proteins,
39 bool export_ids_wo_scores =
false);
46 const std::vector<FASTAFile::FASTAEntry>& fasta,
48 IdentificationData::MoleculeType::PROTEIN,
49 const String& decoy_pattern =
"");
89 using StepOpt = std::optional<IdentificationData::ProcessingStepRef>;
97 if (!left)
return bool(right);
98 if (!right)
return false;
99 return **left < **right;
124 else if (right.
hasRT())
141 return right.
hasMZ();
146 template <
typename MzTabSectionRow>
149 std::vector<MzTabSectionRow>& output,
150 std::map<IdentificationData::ScoreTypeRef, Size>& score_map)
155 row.best_search_engine_score, score_map);
161 opt_seq.first =
"opt_sequence";
162 opt_seq.second.set(parent.
sequence);
163 row.opt_.push_back(opt_seq);
165 output.push_back(row);
169 template <
typename MzTabSectionRow,
typename IdentSeq>
171 const IdentSeq& identified, std::vector<MzTabSectionRow>& output,
172 std::map<IdentificationData::ScoreTypeRef, Size>& score_map)
176 row.sequence.set(identified.sequence.toString());
177 exportStepsAndScoresToMzTab_(identified.steps_and_scores,
179 row.best_search_engine_score, score_map);
180 if (identified.parent_matches.empty())
183 output.push_back(row);
188 row.unique.set(identified.parent_matches.size() == 1);
189 for (
const auto& match_pair : identified.parent_matches)
191 row.accession.set(match_pair.first->accession);
195 MzTabSectionRow copy = row;
196 addMzTabMoleculeParentContext_(match, copy);
197 output.push_back(copy);
204 template <
typename MzTabSectionRow>
208 std::vector<MzTabSectionRow>& output,
209 std::map<IdentificationData::ScoreTypeRef, Size>& score_map,
210 std::map<IdentificationData::InputFileRef, Size>& file_map)
214 xsm.sequence.set(sequence);
216 xsm.search_engine_score, score_map);
218 std::vector<MzTabDouble> rts(1);
219 rts[0].set(query.
rt);
220 xsm.retention_time.set(rts);
221 xsm.charge.set(match.
charge);
222 xsm.exp_mass_to_charge.set(query.
mz);
223 xsm.calc_mass_to_charge.set(calc_mass / abs(match.
charge));
224 xsm.spectra_ref.setMSFile(file_map[query.
input_file]);
225 xsm.spectra_ref.setSpecRef(query.
data_id);
230 opt_adduct.first =
"opt_adduct";
231 opt_adduct.second.set((*match.
adduct_opt)->getName());
232 xsm.opt_.push_back(opt_adduct);
240 opt_meta.first =
"opt_isotope_offset";
241 opt_meta.second.set(match.
getMetaValue(
"isotope_offset"));
242 xsm.opt_.push_back(opt_meta);
246 output.push_back(xsm);
253 std::map<IdentificationData::ScoreTypeRef, Size>& score_map);
257 const std::map<IdentificationData::ScoreTypeRef, Size>& scores,
258 std::map<Size, MzTabParameter>& output);
286 Size& id_counter,
bool clear_original);
A container for consensus elements.
Definition ConsensusMap.h:68
A container for features.
Definition FeatureMap.h:82
An LC-MS feature.
Definition Feature.h:46
Definition IdentificationDataConverter.h:23
static void addMzTabSEScores_(const std::map< IdentificationData::ScoreTypeRef, Size > &scores, std::map< Size, MzTabParameter > &output)
Helper function to add search engine score entries to MzTab's meta data section.
static void exportFeatureIDs(FeatureMap &features, bool clear_original=true)
Convert IDs in a feature map to legacy peptide/protein identifications.
static void importSequences(IdentificationData &id_data, const std::vector< FASTAFile::FASTAEntry > &fasta, IdentificationData::MoleculeType type=IdentificationData::MoleculeType::PROTEIN, const String &decoy_pattern="")
Import FASTA sequences as parent sequences.
static void exportObservationMatchToMzTab_(const String &sequence, const IdentificationData::ObservationMatch &match, double calc_mass, std::vector< MzTabSectionRow > &output, std::map< IdentificationData::ScoreTypeRef, Size > &score_map, std::map< IdentificationData::InputFileRef, Size > &file_map)
Export an input match (peptide- or oligonucleotide-spectrum match) to mzTab.
Definition IdentificationDataConverter.h:205
static IdentificationData::SearchParamRef importDBSearchParameters_(const ProteinIdentification::SearchParameters &pisp, IdentificationData &id_data)
Helper function to import DB search parameters from legacy format.
static void addMzTabMoleculeParentContext_(const IdentificationData::ParentMatch &match, MzTabOligonucleotideSectionRow &row)
Helper function for exportPeptideOrOligoToMzTab_() - oligonucleotide variant.
static ProteinIdentification::SearchParameters exportDBSearchParameters_(IdentificationData::SearchParamRef ref)
Helper function to export DB search parameters to legacy format.
static void exportPeptideOrOligoToMzTab_(const IdentSeq &identified, std::vector< MzTabSectionRow > &output, std::map< IdentificationData::ScoreTypeRef, Size > &score_map)
Export an identified sequence (peptide or oligonucleotide, but not small molecule/compound) to mzTab.
Definition IdentificationDataConverter.h:170
static void handleFeatureImport_(Feature &feature, const IntList &indexes, PeptideIdentificationList &peptides, Size &id_counter, bool clear_original)
static void importIDs(IdentificationData &id_data, const std::vector< ProteinIdentification > &proteins, const PeptideIdentificationList &peptides)
Import from legacy peptide/protein identifications.
static MzTab exportMzTab(const IdentificationData &id_data)
Export to mzTab format.
static void exportIDs(const IdentificationData &id_data, std::vector< ProteinIdentification > &proteins, PeptideIdentificationList &peptides, bool export_ids_wo_scores=false)
Export to legacy peptide/protein identifications.
static void handleFeatureExport_(Feature &feature, const IntList &indexes, IdentificationData &id_data, Size &id_counter)
std::optional< IdentificationData::ProcessingStepRef > StepOpt
Definition IdentificationDataConverter.h:89
static void exportParentSequenceToMzTab_(const IdentificationData::ParentSequence &parent, std::vector< MzTabSectionRow > &output, std::map< IdentificationData::ScoreTypeRef, Size > &score_map)
Export a parent sequence (protein or nucleic acid) to mzTab.
Definition IdentificationDataConverter.h:147
static void exportStepsAndScoresToMzTab_(const IdentificationData::AppliedProcessingSteps &steps_and_scores, MzTabParameterList &steps_out, std::map< Size, MzTabDouble > &scores_out, std::map< IdentificationData::ScoreTypeRef, Size > &score_map)
Helper function to add processing steps (search engines) and their scores to MzTab.
static void exportMSRunInformation_(IdentificationData::ProcessingStepRef step_ref, ProteinIdentification &protein)
Helper function to export (primary) MS run information to legacy format.
static void importFeatureIDs(FeatureMap &features, bool clear_original=true)
Convert IDs from legacy peptide/protein identifications in a feature map.
static void exportParentMatches(const IdentificationData::ParentMatches &parent_matches, PeptideHit &hit)
Convert parent matches to peptide evidences.
static void exportConsensusIDs(ConsensusMap &consensus, bool clear_original=true)
Convert IDs in a consensus map to legacy peptide/protein identifications.
static void addMzTabMoleculeParentContext_(const IdentificationData::ParentMatch &match, MzTabPeptideSectionRow &row)
Helper function for exportPeptideOrOligoToMzTab_() - peptide variant.
static void importConsensusIDs(ConsensusMap &consensus, bool clear_original=true)
Convert IDs from legacy peptide/protein identifications in a consensus map.
Definition IdentificationData.h:87
IdentificationDataInternal::ParentMatches ParentMatches
Definition IdentificationData.h:138
IdentificationDataInternal::AppliedProcessingSteps AppliedProcessingSteps
Definition IdentificationData.h:127
Definition MzTabBase.h:243
Data model of MzTab files. Please see the official MzTab specification at https://code....
Definition MzTab.h:455
Represents a single spectrum match (candidate) for a specific tandem mass spectrum (MS/MS).
Definition PeptideHit.h:52
Container for peptide identifications from multiple spectra.
Definition PeptideIdentificationList.h:66
Represents the set of candidates (SpectrumMatches) identified for a single precursor spectrum.
Definition PeptideIdentification.h:64
double getRT() const
returns the RT of the MS2 spectrum where the identification occurred
bool hasMZ() const
shortcut for isnan(getRT())
bool hasRT() const
shortcut for isnan(getRT())
double getMZ() const
returns the MZ of the MS2 spectrum
Representation of a protein identification run.
Definition ProteinIdentification.h:54
A more convenient string class.
Definition String.h:34
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition Types.h:97
std::vector< Int > IntList
Vector of signed integers.
Definition ListUtils.h:29
MoleculeType
Definition MetaData.h:40
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
std::pair< String, MzTabString > MzTabOptionalColumnEntry
Definition MzTabBase.h:203
OLI - Oligonucleotide section (table-based)
Definition MzTab.h:374
PEP - Peptide section (Table based)
Definition MzTab.h:220
Functor for ordering peptide IDs by RT and m/z (if available)
Definition IdentificationDataConverter.h:105
bool operator()(const PeptideIdentification &left, const PeptideIdentification &right) const
Definition IdentificationDataConverter.h:106
Functor for ordering StepOpt (by date of the steps, if available):
Definition IdentificationDataConverter.h:93
bool operator()(const StepOpt &left, const StepOpt &right) const
Definition IdentificationDataConverter.h:94
Wrapper that adds operator< to iterators, so they can be used as (part of) keys in maps/sets or multi...
Definition MetaData.h:20
Representation of a search hit (e.g. peptide-spectrum match).
Definition ObservationMatch.h:48
AdductOpt adduct_opt
optional reference to adduct
Definition ObservationMatch.h:55
Int charge
Definition ObservationMatch.h:53
ObservationRef observation_ref
Definition ObservationMatch.h:51
Representation of an observation, e.g. a spectrum or feature, in an input data file.
Definition Observation.h:28
double mz
Definition Observation.h:35
InputFileRef input_file
Reference to the input file.
Definition Observation.h:33
String data_id
Spectrum or feature ID (from the file referenced by input_file)
Definition Observation.h:30
double rt
Definition Observation.h:35
Meta data for the association between an identified molecule (e.g. peptide) and a parent sequence (e....
Definition ParentMatch.h:20
Representation of a parent sequence that is identified only indirectly (e.g. a protein).
Definition ParentSequence.h:24
String sequence
Definition ParentSequence.h:31
String description
Definition ParentSequence.h:33
double coverage
sequence coverage as a fraction between 0 and 1
Definition ParentSequence.h:35
String accession
Definition ParentSequence.h:25
AppliedProcessingSteps steps_and_scores
Definition ScoredProcessingResult.h:20
Search parameters of the DB search.
Definition ProteinIdentification.h:254