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
f822f79f
Commit
f822f79f
authored
6 years ago
by
Langella Olivier
Browse files
Options
Downloads
Patches
Plain Diff
contaminant checkbox added in protein view
parent
d26ad900
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/CMakeLists.txt
+2
-1
2 additions, 1 deletion
src/CMakeLists.txt
src/gui/protein_view/protein_detail_view.ui
+23
-0
23 additions, 0 deletions
src/gui/protein_view/protein_detail_view.ui
src/gui/protein_view/proteinwindow.cpp
+30
-13
30 additions, 13 deletions
src/gui/protein_view/proteinwindow.cpp
with
55 additions
and
14 deletions
src/CMakeLists.txt
+
2
−
1
View file @
f822f79f
...
...
@@ -19,10 +19,11 @@ QT5_ADD_RESOURCES(xtpcpp_RCC_SRCS ${xtpcpp_RCCS})
FIND_PACKAGE
(
ZLIB REQUIRED
)
if
(
QCustomPlot_FOUND
)
MESSAGE
(
"QCustomPlot_INCLUDES found
${
QCustomPlot_INCLUDES
}
"
)
else
(
QCustomPlot_FOUND
)
FIND_PACKAGE
(
QCustomPlot REQUIRED
)
endif
(
QCustomPlot_FOUND
)
if
(
ODSSTREAM_QT5_FOUND
)
else
(
ODSSTREAM_QT5_FOUND
)
FIND_PACKAGE
(
Odsstream REQUIRED
)
#ODSSTREAM_INCLUDE_DIR AND ODSSTREAM_LIBRARY
...
...
This diff is collapsed.
Click to expand it.
src/gui/protein_view/protein_detail_view.ui
+
23
−
0
View file @
f822f79f
...
...
@@ -105,11 +105,34 @@
</property>
</widget>
</item>
<item>
<widget
class=
"QCheckBox"
name=
"contaminant_checkbox"
>
<property
name=
"enabled"
>
<bool>
false
</bool>
</property>
<property
name=
"font"
>
<font>
<pointsize>
9
</pointsize>
</font>
</property>
<property
name=
"text"
>
<string>
contaminant
</string>
</property>
<property
name=
"checked"
>
<bool>
false
</bool>
</property>
</widget>
</item>
<item>
<widget
class=
"QCheckBox"
name=
"decoy_checkbox"
>
<property
name=
"enabled"
>
<bool>
false
</bool>
</property>
<property
name=
"font"
>
<font>
<pointsize>
9
</pointsize>
</font>
</property>
<property
name=
"text"
>
<string>
decoy
</string>
</property>
...
...
This diff is collapsed.
Click to expand it.
src/gui/protein_view/proteinwindow.cpp
+
30
−
13
View file @
f822f79f
...
...
@@ -39,8 +39,8 @@ DbXrefButton::DbXrefButton(QWidget *parent, DbXref dbxref) : QPushButton(parent)
_dbxref
=
dbxref
;
#if QT_VERSION >= 0x050000
// Qt5 code
QObject
::
connect
(
this
,
&
DbXrefButton
::
clicked
,
this
,
&
DbXrefButton
::
clickedSlot
);
QObject
::
connect
(
this
,
&
DbXrefButton
::
clicked
,
this
,
&
DbXrefButton
::
clickedSlot
);
#else
// Qt4 code
QObject
::
connect
(
this
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
clickedSlot
()));
...
...
@@ -67,16 +67,23 @@ ProteinWindow::ProteinWindow(ProjectWindow *parent)
#if QT_VERSION >= 0x050000
// Qt5 code
connect
(
_p_project_window
,
&
ProjectWindow
::
identificationGroupGrouped
,
this
,
connect
(
_p_project_window
,
&
ProjectWindow
::
identificationGroupGrouped
,
this
,
&
ProteinWindow
::
doIdentificationGroupGrouped
);
connect
(
_p_project_window
,
&
ProjectWindow
::
peptideEvidenceSelected
,
this
,
connect
(
_p_project_window
,
&
ProjectWindow
::
peptideEvidenceSelected
,
this
,
&
ProteinWindow
::
doPeptideEvidenceSelected
);
#else
// Qt4 code
connect
(
_p_project_window
,
SIGNAL
(
identificationGroupGrouped
(
IdentificationGroup
*
)),
this
,
SIGNAL
(
identificationGroupGrouped
(
IdentificationGroup
*
)),
this
,
SLOT
(
doIdentificationGroupGrouped
(
IdentificationGroup
*
)));
connect
(
_p_project_window
,
SIGNAL
(
peptideMatchSelected
(
PeptideMatch
*
)),
this
,
connect
(
_p_project_window
,
SIGNAL
(
peptideMatchSelected
(
PeptideMatch
*
)),
this
,
SLOT
(
doPeptideMatchSelected
(
PeptideMatch
*
)));
// connect(_protein_table_model_p, SIGNAL(layoutChanged()), this,
...
...
@@ -123,9 +130,17 @@ ProteinWindow::updateDisplay()
try
{
clearDbXrefLayout
();
// valid protein
ui
->
valid_checkbox
->
setCheckState
(
Qt
::
Unchecked
);
if
(
_p_protein_match
->
isValid
())
ui
->
valid_checkbox
->
setCheckState
(
Qt
::
Checked
);
// contaminant protein
ui
->
contaminant_checkbox
->
setCheckState
(
Qt
::
Unchecked
);
if
(
_p_protein_match
->
getProteinXtpSp
().
get
()
->
isContaminant
())
ui
->
contaminant_checkbox
->
setCheckState
(
Qt
::
Checked
);
// decoy protein (reversed)
ui
->
decoy_checkbox
->
setCheckState
(
Qt
::
Unchecked
);
if
(
_p_protein_match
->
getProteinXtpSp
().
get
()
->
isDecoy
())
ui
->
decoy_checkbox
->
setCheckState
(
Qt
::
Checked
);
...
...
@@ -135,9 +150,10 @@ ProteinWindow::updateDisplay()
_p_protein_match
->
getProteinXtpSp
().
get
()
->
getDbxrefList
())
{
QString
accession
=
ui
->
accession_label
->
text
().
replace
(
dbxref
.
accession
,
QString
(
"<span style=
\"
color:%2;
\"
>%1</span>"
)
.
arg
(
dbxref
.
accession
)
.
arg
(
"blue"
));
dbxref
.
accession
,
QString
(
"<span style=
\"
color:%2;
\"
>%1</span>"
)
.
arg
(
dbxref
.
accession
)
.
arg
(
"blue"
));
ui
->
accession_label
->
setText
(
accession
);
qDebug
()
<<
"ProteinWindow::updateDisplay "
<<
accession
;
...
...
@@ -163,13 +179,14 @@ ProteinWindow::updateDisplay()
}
catch
(
pappso
::
PappsoException
exception_pappso
)
{
QMessageBox
::
warning
(
this
,
tr
(
"Unable to display protein details :"
),
QMessageBox
::
warning
(
this
,
tr
(
"Unable to display protein details :"
),
exception_pappso
.
qwhat
());
}
catch
(
std
::
exception
exception_std
)
{
QMessageBox
::
warning
(
this
,
tr
(
"Unable to display protein details :"
),
exception_std
.
what
());
QMessageBox
::
warning
(
this
,
tr
(
"Unable to display protein details :"
),
exception_std
.
what
());
}
}
...
...
@@ -253,7 +270,7 @@ ProteinWindow::doSaveSvg()
doc
->
setPageSize
(
printer
.
pageRect
().
size
());
//// height from doc QTextDocument
////
///http://fop-miniscribus.googlecode.com/svn/trunk/fop_miniscribus.1.0.0/src/floating_box/floatdiagram.cpp
///
http://fop-miniscribus.googlecode.com/svn/trunk/fop_miniscribus.1.0.0/src/floating_box/floatdiagram.cpp
//////setMaximumHeight(DocumentHighgtActual());
doc
->
setPageSize
(
printer
.
pageRect
()
...
...
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