Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
xtpcpp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
PAPPSO
xtpcpp
Commits
29591281
Commit
29591281
authored
6 years ago
by
Langella Olivier
Browse files
Options
Downloads
Patches
Plain Diff
mutation support
parent
97777e6a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/input/xtandemsaxhandler.cpp
+47
-23
47 additions, 23 deletions
src/input/xtandemsaxhandler.cpp
src/utils/peptidestore.cpp
+12
-5
12 additions, 5 deletions
src/utils/peptidestore.cpp
with
59 additions
and
28 deletions
src/input/xtandemsaxhandler.cpp
+
47
−
23
View file @
29591281
...
@@ -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
());
...
...
This diff is collapsed.
Click to expand it.
src/utils/peptidestore.cpp
+
12
−
5
View file @
29591281
...
@@ -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
()));
}
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment