Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
i2MassChroQ
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
i2MassChroQ
Commits
95a18154
Commit
95a18154
authored
7 years ago
by
Langella Olivier
Browse files
Options
Downloads
Patches
Plain Diff
read contaminant and decoy XML tag
parent
b3474aa9
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/xtpxpipsaxhandler.cpp
+39
-0
39 additions, 0 deletions
src/input/xtpxpipsaxhandler.cpp
src/input/xtpxpipsaxhandler.h
+2
-0
2 additions, 0 deletions
src/input/xtpxpipsaxhandler.h
with
41 additions
and
0 deletions
src/input/xtpxpipsaxhandler.cpp
+
39
−
0
View file @
95a18154
...
...
@@ -123,6 +123,10 @@ bool XtpXpipSaxHandler::startElement(const QString & namespaceURI, const QString
is_ok
=
startElement_description
(
attributes
);
}
else
if
(
qName
==
"fasta_file"
)
{
is_ok
=
startElement_fasta_file
(
attributes
);
}
else
if
(
qName
==
"contaminants"
)
{
is_ok
=
startElement_contaminants
(
attributes
);
}
else
if
(
qName
==
"decoys"
)
{
is_ok
=
startElement_decoys
(
attributes
);
}
_current_text
.
clear
();
...
...
@@ -193,6 +197,41 @@ bool XtpXpipSaxHandler::endElement(const QString & namespaceURI, const QString &
return
is_ok
;
}
bool
XtpXpipSaxHandler
::
startElement_contaminants
(
QXmlAttributes
attributes
)
{
// <contaminants regexp="^contatruc\|" fasta_id=""/>
qDebug
()
<<
"startElement_contaminants "
;
QString
regexp
(
attributes
.
value
(
"regexp"
));
QString
fasta_id_list
(
attributes
.
value
(
"fasta_id"
));
if
(
!
regexp
.
isEmpty
())
{
_p_project
->
getProteinStore
().
setRegexpContaminantPattern
(
regexp
);
}
if
(
!
fasta_id_list
.
isEmpty
())
{
for
(
QString
fasta_id
:
fasta_id_list
.
split
(
" "
))
{
_p_project
->
getProteinStore
().
addContaminantFastaFile
(
_map_fasta_files
.
at
(
fasta_id
).
get
());
}
}
qDebug
()
<<
"startElement_contaminants end"
;
return
true
;
}
bool
XtpXpipSaxHandler
::
startElement_decoys
(
QXmlAttributes
attributes
)
{
// <decoys regexp=".*reversedi" fasta_id=""/>
qDebug
()
<<
"startElement_decoys "
;
QString
regexp
(
attributes
.
value
(
"regexp"
));
QString
fasta_id_list
(
attributes
.
value
(
"fasta_id"
));
if
(
!
regexp
.
isEmpty
())
{
_p_project
->
getProteinStore
().
setRegexpDecoyPattern
(
regexp
);
}
if
(
!
fasta_id_list
.
isEmpty
())
{
for
(
QString
fasta_id
:
fasta_id_list
.
split
(
" "
))
{
_p_project
->
getProteinStore
().
addDecoyFastaFile
(
_map_fasta_files
.
at
(
fasta_id
).
get
());
}
}
qDebug
()
<<
"startElement_decoys end"
;
return
true
;
}
bool
XtpXpipSaxHandler
::
startElement_label_method
(
QXmlAttributes
attributes
)
{
// <label_method id="dimethyl">
qDebug
()
<<
"startElement_label_method "
;
...
...
This diff is collapsed.
Click to expand it.
src/input/xtpxpipsaxhandler.h
+
2
−
0
View file @
95a18154
...
...
@@ -85,6 +85,8 @@ private:
bool
startElement_stat
(
QXmlAttributes
attributes
);
bool
startElement_counts
(
QXmlAttributes
attributes
);
bool
startElement_label_method
(
QXmlAttributes
attributes
);
bool
startElement_contaminants
(
QXmlAttributes
attributes
);
bool
startElement_decoys
(
QXmlAttributes
attributes
);
//bool endElement_identification();
bool
endElement_sequence
();
...
...
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