38 size_t hash = 14695981039346656037ull;
41 hash ^=
static_cast<unsigned char>(c);
42 hash *= 1099511628211ull;
174 template <
class LAMBDA>
177 for (
const auto& child_id : getTerm(parent_id).children)
179 if (lbd(child_id) || iterateAllChildren(child_id, lbd))
Definition ControlledVocabulary.h:29
ControlledVocabulary()
Constructor.
bool checkName_(const String &id, const String &name, bool ignore_case=true) const
checks if a name corresponds to an id
bool hasTermWithName(const String &name) const
Returns true if a term with the given name is in the CV. Returns false otherwise.
bool iterateAllChildren(const String &parent_id, LAMBDA lbd) const
Iterates over all children (incl. subchildren etc) of parent recursively, i.e. the whole subtree.
Definition ControlledVocabulary.h:175
void loadFromOBO(const String &name, const String &filename)
Loads the CV from an OBO file.
friend std::ostream & operator<<(std::ostream &os, const ControlledVocabulary &cv)
Print the contents to a stream.
String name_
Name set in the load method.
Definition ControlledVocabulary.h:235
std::map< String, String > namesToIds_
Map from name to id.
Definition ControlledVocabulary.h:233
String version_
CV version.
Definition ControlledVocabulary.h:239
bool isChildOf(const String &child_id, const String &parent_id) const
Returns if child is a child of parent.
virtual ~ControlledVocabulary()
Destructor.
std::map< String, CVTerm > terms_
Map from ID to CVTerm.
Definition ControlledVocabulary.h:231
const std::map< String, CVTerm > & getTerms() const
returns all the terms stored in the CV
void getAllChildTerms(std::set< String > &terms, const String &parent_id) const
Writes all child terms recursively into terms.
String label_
CV label.
Definition ControlledVocabulary.h:237
const CVTerm & getTerm(const String &id) const
Returns a term specified by ID.
static const ControlledVocabulary & getPSIMSCV()
Returns a CV for parsing/storing PSI-MS related data, e.g. mzML, or handle accessions/ids in datastru...
const CVTerm & getTermByName(const String &name, const String &desc="") const
Returns a term specified by name.
const String & name() const
Returns the CV name (set in the load method)
const String & label() const
Returns the CV label (set in the load method)
const String & version() const
Returns the CV version (set in the load method)
bool exists(const String &id) const
Returns true if the term is in the CV. Returns false otherwise.
String url_
CV URL.
Definition ControlledVocabulary.h:241
const String & url() const
Returns the CV url (set in the load method)
const ControlledVocabulary::CVTerm * checkAndGetTermByName(const OpenMS::String &name) const
Searches the existing terms for the given name.
Class to hold strings, numeric values, lists of strings and lists of numeric values.
Definition DataValue.h:34
A more convenient string class.
Definition String.h:34
std::vector< String > StringList
Vector of String.
Definition ListUtils.h:44
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)
Representation of a CV term.
Definition ControlledVocabulary.h:50
std::set< String > parents
The parent IDs.
Definition ControlledVocabulary.h:73
String toXMLString(const String &ref, const DataValue &value) const
get mzidentml formatted string. i.e. a cvparam xml element, ref should be the name of the ControlledV...
CVTerm(const CVTerm &rhs)
StringList unparsed
Unparsed lines from the definition file.
Definition ControlledVocabulary.h:78
std::set< String > children
The child IDs.
Definition ControlledVocabulary.h:74
StringList xref_binary
xref binary-data-type for the CV-term (list of all allowed data value types for the current binary da...
Definition ControlledVocabulary.h:80
String id
Identifier.
Definition ControlledVocabulary.h:72
String description
Term description.
Definition ControlledVocabulary.h:76
bool obsolete
Flag that indicates of the term is obsolete.
Definition ControlledVocabulary.h:75
static String getXRefTypeName(XRefType type)
String name
if it is a score type, lookup has_order
Definition ControlledVocabulary.h:71
StringList synonyms
List of synonyms.
Definition ControlledVocabulary.h:77
XRefType xref_type
xref value-type for the CV-term
Definition ControlledVocabulary.h:79
CVTerm()
Default constructor.
std::set< String > units
unit accession ids, defined by relationship has units
Definition ControlledVocabulary.h:81
String toXMLString(const String &ref, const String &value=String("")) const
get mzidentml formatted string. i.e. a cvparam xml element, ref should be the name of the ControlledV...
XRefType
define xsd types allowed in cv term to specify their value-type
Definition ControlledVocabulary.h:53
@ XSD_BOOLEAN
Definition ControlledVocabulary.h:61
@ XSD_DATE
Definition ControlledVocabulary.h:62
@ XSD_NEGATIVE_INTEGER
Definition ControlledVocabulary.h:57
@ XSD_POSITIVE_INTEGER
Definition ControlledVocabulary.h:58
@ XSD_NON_POSITIVE_INTEGER
Definition ControlledVocabulary.h:60
@ XSD_DECIMAL
Definition ControlledVocabulary.h:56
@ XSD_NON_NEGATIVE_INTEGER
Definition ControlledVocabulary.h:59
@ XSD_ANYURI
Definition ControlledVocabulary.h:63
@ XSD_INTEGER
Definition ControlledVocabulary.h:55
CVTerm & operator=(const CVTerm &rhs)
static bool isHigherBetterScore(ControlledVocabulary::CVTerm term)
ensure same hash on all platforms (for reproducibility)-
Definition ControlledVocabulary.h:35
size_t operator()(const String &key) const noexcept
Definition ControlledVocabulary.h:36