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

mutation support

parent 97777e6a
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,8 @@ ...@@ -40,7 +40,8 @@
XtandemSaxHandler::XtandemSaxHandler( XtandemSaxHandler::XtandemSaxHandler(
Project *p_project, IdentificationGroup *p_identification_group, Project *p_project,
IdentificationGroup *p_identification_group,
IdentificationDataSource *p_identification_data_source) IdentificationDataSource *p_identification_data_source)
: _p_project(p_project) : _p_project(p_project)
{ {
...@@ -57,7 +58,8 @@ XtandemSaxHandler::~XtandemSaxHandler() ...@@ -57,7 +58,8 @@ XtandemSaxHandler::~XtandemSaxHandler()
bool bool
XtandemSaxHandler::startElement(const QString &namespaceURI, XtandemSaxHandler::startElement(const QString &namespaceURI,
const QString &localName, const QString &qName, const QString &localName,
const QString &qName,
const QXmlAttributes &attributes) const QXmlAttributes &attributes)
{ {
// qDebug() << namespaceURI << " " << localName << " " << qName ; // qDebug() << namespaceURI << " " << localName << " " << qName ;
...@@ -96,8 +98,9 @@ XtandemSaxHandler::startElement(const QString &namespaceURI, ...@@ -96,8 +98,9 @@ XtandemSaxHandler::startElement(const QString &namespaceURI,
} }
catch(pappso::PappsoException &exception_pappso) catch(pappso::PappsoException &exception_pappso)
{ {
_errorStr = QObject::tr("ERROR in XtandemSaxHandler::startElement tag " _errorStr = QObject::tr(
"%1, PAPPSO exception:\n%2") "ERROR in XtandemSaxHandler::startElement tag "
"%1, PAPPSO exception:\n%2")
.arg(qName) .arg(qName)
.arg(exception_pappso.qwhat()); .arg(exception_pappso.qwhat());
return false; return false;
...@@ -116,7 +119,8 @@ XtandemSaxHandler::startElement(const QString &namespaceURI, ...@@ -116,7 +119,8 @@ XtandemSaxHandler::startElement(const QString &namespaceURI,
bool bool
XtandemSaxHandler::endElement(const QString &namespaceURI, XtandemSaxHandler::endElement(const QString &namespaceURI,
const QString &localName, const QString &qName) const QString &localName,
const QString &qName)
{ {
bool is_ok = true; bool is_ok = true;
...@@ -138,8 +142,9 @@ XtandemSaxHandler::endElement(const QString &namespaceURI, ...@@ -138,8 +142,9 @@ XtandemSaxHandler::endElement(const QString &namespaceURI,
} }
catch(pappso::PappsoException &exception_pappso) catch(pappso::PappsoException &exception_pappso)
{ {
_errorStr = QObject::tr("ERROR in XtandemSaxHandler::endElement tag %1, " _errorStr = QObject::tr(
"PAPPSO exception:\n%2") "ERROR in XtandemSaxHandler::endElement tag %1, "
"PAPPSO exception:\n%2")
.arg(qName) .arg(qName)
.arg(exception_pappso.qwhat()); .arg(exception_pappso.qwhat());
return false; return false;
...@@ -219,9 +224,10 @@ XtandemSaxHandler::startElement_file(QXmlAttributes attributes) ...@@ -219,9 +224,10 @@ XtandemSaxHandler::startElement_file(QXmlAttributes attributes)
// attrs.getValue("URL"))); // attrs.getValue("URL")));
if(_p_protein_match == nullptr) if(_p_protein_match == nullptr)
{ {
throw pappso::PappsoException("ERROR in " throw pappso::PappsoException(
"XtandemSaxHandler::startElement_file " "ERROR in "
": _p_protein_match == nullptr"); "XtandemSaxHandler::startElement_file "
": _p_protein_match == nullptr");
} }
_p_protein_match->getProteinXtpSp().get()->setFastaFileP( _p_protein_match->getProteinXtpSp().get()->setFastaFileP(
_p_project->getFastaFileStore() _p_project->getFastaFileStore()
...@@ -251,9 +257,10 @@ XtandemSaxHandler::startElement_domain(QXmlAttributes attributes) ...@@ -251,9 +257,10 @@ XtandemSaxHandler::startElement_domain(QXmlAttributes attributes)
//"")); //""));
if(_p_protein_match == nullptr) if(_p_protein_match == nullptr)
{ {
throw pappso::PappsoException("ERROR in " throw pappso::PappsoException(
"XtandemSaxHandler::startElement_" "ERROR in "
"domain : _p_protein_match == nullptr"); "XtandemSaxHandler::startElement_"
"domain : _p_protein_match == nullptr");
} }
_p_protein_match->getProteinXtpSp().get()->setSequence(_current_text); _p_protein_match->getProteinXtpSp().get()->setSequence(_current_text);
...@@ -387,11 +394,25 @@ bool ...@@ -387,11 +394,25 @@ bool
XtandemSaxHandler::startElement_aa(QXmlAttributes attributes) XtandemSaxHandler::startElement_aa(QXmlAttributes attributes)
{ {
//<aa type="M" at="624" modified="15.99491" /> //<aa type="M" at="624" modified="15.99491" />
bool is_ok = true; bool is_ok = true;
// qDebug() << "startElement_aa "; // qDebug() << "startElement_aa ";
pappso::AaModificationP modif = pappso::AaModificationP modif = nullptr;
Utils::guessAaModificationPbyMonoisotopicMassDelta( if(attributes.value("pm").isEmpty())
attributes.value("modified").simplified().toDouble()); {
modif = Utils::guessAaModificationPbyMonoisotopicMassDelta(
attributes.value("modified").simplified().toDouble());
}
else
{
//<aa type="P" at="59" modified="31.98983" pm="E" />
//<aa type="C" at="64" modified="-15.97716" pm="S" />
// point mutation
QChar mut_from(attributes.value("type")[0]);
QChar mut_to(attributes.value("pm")[0]);
modif = pappso::AaModification::getInstanceMutation(mut_from, mut_to);
}
unsigned int position_in_prot = unsigned int position_in_prot =
attributes.value("at").simplified().toUInt() - 1; attributes.value("at").simplified().toUInt() - 1;
_current_peptide_sp.get()->addAaModification( _current_peptide_sp.get()->addAaModification(
...@@ -415,9 +436,10 @@ XtandemSaxHandler::endElement_domain() ...@@ -415,9 +436,10 @@ XtandemSaxHandler::endElement_domain()
.getInstance(_p_peptide_evidence)); .getInstance(_p_peptide_evidence));
if(_p_protein_match == nullptr) if(_p_protein_match == nullptr)
{ {
throw pappso::PappsoException("ERROR in " throw pappso::PappsoException(
"XtandemSaxHandler::endElement_domain : " "ERROR in "
"_p_protein_match == nullptr"); "XtandemSaxHandler::endElement_domain : "
"_p_protein_match == nullptr");
} }
_p_protein_match->addPeptideMatch(_current_peptide_match); _p_protein_match->addPeptideMatch(_current_peptide_match);
...@@ -713,8 +735,9 @@ XtandemSaxHandler::endElement_note() ...@@ -713,8 +735,9 @@ XtandemSaxHandler::endElement_note()
bool bool
XtandemSaxHandler::error(const QXmlParseException &exception) XtandemSaxHandler::error(const QXmlParseException &exception)
{ {
_errorStr = QObject::tr("Parse error at line %1, column %2 :\n" _errorStr = QObject::tr(
"%3") "Parse error at line %1, column %2 :\n"
"%3")
.arg(exception.lineNumber()) .arg(exception.lineNumber())
.arg(exception.columnNumber()) .arg(exception.columnNumber())
.arg(exception.message()); .arg(exception.message());
...@@ -726,8 +749,9 @@ XtandemSaxHandler::error(const QXmlParseException &exception) ...@@ -726,8 +749,9 @@ XtandemSaxHandler::error(const QXmlParseException &exception)
bool bool
XtandemSaxHandler::fatalError(const QXmlParseException &exception) XtandemSaxHandler::fatalError(const QXmlParseException &exception)
{ {
_errorStr = QObject::tr("Parse error at line %1, column %2 :\n" _errorStr = QObject::tr(
"%3") "Parse error at line %1, column %2 :\n"
"%3")
.arg(exception.lineNumber()) .arg(exception.lineNumber())
.arg(exception.columnNumber()) .arg(exception.columnNumber())
.arg(exception.message()); .arg(exception.message());
......
...@@ -113,11 +113,18 @@ PeptideStore::checkPsimodCompliance() const ...@@ -113,11 +113,18 @@ PeptideStore::checkPsimodCompliance() const
} }
else else
{ {
throw pappso::PappsoException( if(modification->getAccession().startsWith("MUTATION:"))
QObject::tr("Modification %1 is not a PSIMOD accession. Please " {
"go into the edit=>modifications menu to replace " }
"modifications masses by PSIMOD accessions") else
.arg(modification->getAccession())); {
throw pappso::PappsoException(
QObject::tr(
"Modification %1 is not a PSIMOD accession. Please "
"go into the edit=>modifications menu to replace "
"modifications masses by PSIMOD accessions")
.arg(modification->getAccession()));
}
} }
} }
} }
......
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