17#ifndef MS_QUANT_NORMALISATION_PROTEIN_HPP
18#define MS_QUANT_NORMALISATION_PROTEIN_HPP
25namespace msparser_internal {
26 class ms_quant_xmlloader;
29namespace matrix_science {
31 class ms_quant_modgroup;
45 friend class msparser_internal::ms_quant_xmlloader;
68 virtual std::string getSchemaType()
const;
71 virtual std::string validateShallow(
const ms_xml_schema *pSchemaFileObj)
const;
74 virtual std::string validateDeep(
const ms_xml_schema *pSchemaFileObj)
const;
78 bool haveAccession()
const;
81 std::string getAccession()
const;
84 void setAccession(
const char * value);
90 std::string getAccessionSchemaType()
const;
94 std::string _accession;
101 friend class msparser_internal::ms_quant_xmlloader;
114 void defaultValues();
124 virtual std::string getSchemaType()
const;
127 virtual std::string validateShallow(
const ms_xml_schema *pSchemaFileObj)
const;
130 virtual std::string validateDeep(
const ms_xml_schema *pSchemaFileObj)
const;
134 int getNumberOfProteins()
const;
137 void clearProteins();
149 bool deleteProtein(
const int idx);
152 std::string getProteinSchemaType()
const;
156 typedef std::vector< ms_quant_normalisation_protein* > prot_vector;
157 prot_vector _proteins;
An object of this class represent a single protein element in quantitation.xml.
Definition: ms_quant_normalisation_protein.hpp:44
An object of this class represent a collection of peptide elements in quantitation....
Definition: ms_quant_normalisation_protein.hpp:100