18#include <unordered_map>
23 class ResidueModification;
71 explicit ModificationsDB(std::vector<std::unique_ptr<ModificationDataProvider>> providers);
100 const String& residue =
"",
129 bool& multiple_matches,
130 const String& residue =
"",
234 std::vector<ResidueModification*>
mods_;
Representation of a peptide/protein sequence.
Definition AASequence.h:88
Definition CrossLinksDB.h:18
database which holds all residue modifications from UniMod
Definition ModificationsDB.h:51
void searchModificationsByDiffMonoMass(std::vector< String > &mods, double mass, double max_error, const String &residue="", ResidueModification::TermSpecificity term_spec=ResidueModification::NUMBER_OF_TERM_SPECIFICITY)
Collects all modifications with delta mass inside a tolerance window.
Size getNumberOfModifications() const
Returns the number of modifications read from the unimod.xml file.
bool residuesMatch_(const char residue, const ResidueModification *curr_mod) const
Helper function to check if a residue matches the origin for a modification.
const ResidueModification * addModification(std::unique_ptr< ResidueModification > new_mod)
Add a new modification to ModificationsDB. If the modification already exists (based on its fullID) i...
const ResidueModification * searchModification(const ResidueModification &mod_in) const
Returns a pointer to an exact match of the given modification if present in the DB.
void writeTSV(const String &filename)
Writes tab separated entries: FullId,FullName,Origin,AA,TerminusSpecificity,DiffMonoMass (including h...
std::vector< ResidueModification * > mods_
Stores the modifications.
Definition ModificationsDB.h:234
const ResidueModification * getModification(Size index) const
Returns the modification with the given index. note: out-of-bounds check is only performed in debug m...
void searchModificationsByDiffMonoMassSorted(std::vector< const ResidueModification * > &mods, double mass, double max_error, const String &residue="", ResidueModification::TermSpecificity term_spec=ResidueModification::NUMBER_OF_TERM_SPECIFICITY)
bool has(const String &modification) const
Returns true if the modification exists.
const ResidueModification * addNewModification_(const ResidueModification &new_mod)
Add a new modification to ModificationsDB without checking if it was inside already.
Size findModificationIndex(const String &mod_name) const
Returns the index of the modification in the mods_ vector; a unique name must be given.
void loadFromProviders_(std::vector< std::unique_ptr< ModificationDataProvider > > &providers)
Loads and indexes modifications from the given providers.
ModificationsDB(std::vector< std::unique_ptr< ModificationDataProvider > > providers)
Construct from data providers (no file I/O performed by this constructor).
void searchModificationsByDiffMonoMass(std::vector< const ResidueModification * > &mods, double mass, double max_error, const String &residue="", ResidueModification::TermSpecificity term_spec=ResidueModification::NUMBER_OF_TERM_SPECIFICITY)
const ResidueModification * searchModificationsFast(const String &mod_name, bool &multiple_matches, const String &residue="", ResidueModification::TermSpecificity term_spec=ResidueModification::NUMBER_OF_TERM_SPECIFICITY) const
Returns the modification which has the given name as synonym (fast version)
void searchModificationsByDiffMonoMassSorted(std::vector< String > &mods, double mass, double max_error, const String &residue="", ResidueModification::TermSpecificity term_spec=ResidueModification::NUMBER_OF_TERM_SPECIFICITY)
Collects all modifications with delta mass inside a tolerance window and adds them sorted by mass dif...
const ResidueModification * getModification(const String &mod_name, const String &residue="", ResidueModification::TermSpecificity term_spec=ResidueModification::NUMBER_OF_TERM_SPECIFICITY) const
Returns the modification with the given name.
static ModificationsDB * getInstance()
Returns a pointer to the modifications DB (singleton)
virtual ~ModificationsDB()
Destructor (public so non-singleton instances created via provider constructor can be destroyed)
static bool isInstantiated()
Check whether ModificationsDB was instantiated before.
static bool is_instantiated_
Stores whether ModificationsDB was instantiated before.
Definition ModificationsDB.h:231
ModificationsDB & operator=(const ModificationsDB &aa)
Assignment operator.
static ModificationsDB * initializeModificationsDB(OpenMS::String unimod_file="CHEMISTRY/unimod.xml", OpenMS::String custommod_file="CHEMISTRY/custom_mods.xml", OpenMS::String psimod_file="CHEMISTRY/PSI-MOD.obo", OpenMS::String xlmod_file="CHEMISTRY/XLMOD.obo")
Initializes the modification DB with non-default modification files (can only be done once)
void searchModifications(std::set< const ResidueModification * > &mods, const String &mod_name, const String &residue="", ResidueModification::TermSpecificity term_spec=ResidueModification::NUMBER_OF_TERM_SPECIFICITY) const
Collects all modifications which have the given name as synonym.
ModificationsDB(const ModificationsDB &residue_db)
Copy constructor (disabled)
const ResidueModification * getBestModificationByDiffMonoMass(double mass, double max_error, const String &residue="", ResidueModification::TermSpecificity term_spec=ResidueModification::NUMBER_OF_TERM_SPECIFICITY)
Returns the best matching modification for the given delta mass and residue.
const ResidueModification * addModification(const ResidueModification &new_mod)
Add a new modification to ModificationsDB. If the modification already exists (based on its fullID) i...
void getAllSearchModifications(std::vector< String > &modifications) const
Collects all modifications that can be used for identification searches.
std::unordered_map< String, std::set< const ResidueModification * > > modification_names_
Stores the mappings of (unique) names to the modifications.
Definition ModificationsDB.h:237
Representation of a modification on an amino acid residue.
Definition ResidueModification.h:55
TermSpecificity
Position where the modification is allowed to occur.
Definition ResidueModification.h:74
Representation of an amino acid residue.
Definition Residue.h:40
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
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19