Skip to content
Snippets Groups Projects
Commit e229909a authored by Olivier Langella's avatar Olivier Langella
Browse files

doxygen documentation

parent 922cc022
No related branches found
No related tags found
No related merge requests found
......@@ -40,10 +40,12 @@ public :
void setEvalue(pappso::pappso_double evalue);
void setExperimentalMass(pappso::pappso_double exp_mass);
/** @brief start position on the protein sequence (starts at 1, not 0)
/** @brief set start position of this peptide inside the protein sequence
* @param start position in the protein amino acid sequence (starts at 0)
* */
void setStart(unsigned int start);
/** @brief get start position on the protein sequence (starts at 1, not 0)
/** @brief get start position of this peptide inside the protein sequence
* @return start position in the protein amino acid sequence (starts at 0)
* */
unsigned int getStart() const;
void setCharge(unsigned int charge);
......
......@@ -138,7 +138,7 @@ const pappso::GrpProteinSp & ProteinMatch::getGrpProteinSp() const {
for (auto & p_peptide_match : _peptide_match_list) {
if (p_peptide_match->isValidAndChecked()) {
size_t size = p_peptide_match->getPeptideSp().get()->size();
size_t offset = p_peptide_match->getStart()-1;
size_t offset = p_peptide_match->getStart();
if (offset >= 0) {
for (size_t i=0; (i < size) && (offset < prot_size) ; i++,offset++) {
cover_bool[offset] = true;
......
......@@ -241,7 +241,7 @@ bool XpipSaxHandler::startElement_peptide(QXmlAttributes attributes) {
_p_peptide_match->setEvalue(attributes.value("evalue").simplified().toDouble());
pappso::pappso_double exp_mass = attributes.value("mhplus_obser").simplified().toDouble() - pappso::MHPLUS;
_p_peptide_match->setExperimentalMass(exp_mass);
_p_peptide_match->setStart(attributes.value("start").simplified().toUInt());
_p_peptide_match->setStart(attributes.value("start").simplified().toUInt()-1);
_p_peptide_match->setCharge(attributes.value("charge").simplified().toUInt());
_p_peptide_match->setCharge(attributes.value("charge").simplified().toUInt());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment