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
36146f40
Commit
36146f40
authored
6 years ago
by
Langella Olivier
Browse files
Options
Downloads
Patches
Plain Diff
tandem bin path check
parent
e8c810b3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/gui/tandem_run_dialog/tandemrundialog.cpp
+12
-3
12 additions, 3 deletions
src/gui/tandem_run_dialog/tandemrundialog.cpp
with
12 additions
and
3 deletions
src/gui/tandem_run_dialog/tandemrundialog.cpp
+
12
−
3
View file @
36146f40
...
...
@@ -45,7 +45,7 @@
TandemRunDialog
::
TandemRunDialog
(
QWidget
*
parent
)
:
QDialog
(
parent
),
ui
(
new
Ui
::
TandemRunDialog
)
{
qDebug
()
<<
"TandemRunDialog::TandemRunDialog begin"
;
qDebug
()
<<
__FILE__
<<
" "
<<
__FUNCTION__
<<
" "
<<
__LINE__
;
ui
->
setupUi
(
this
);
this
->
setModal
(
true
);
_p_fasta_file_list
=
new
QStringListModel
();
...
...
@@ -178,13 +178,13 @@ TandemRunDialog::fillPresetComboBox()
void
TandemRunDialog
::
reset
()
{
qDebug
()
<<
__FILE__
<<
" "
<<
__FUNCTION__
<<
" "
<<
__LINE__
;
QSettings
settings
;
QString
default_output_location
=
settings
.
value
(
"path/identificationfiles"
,
""
).
toString
();
ui
->
output_directory_label
->
setText
(
default_output_location
);
QString
tandem_bin_path
=
settings
.
value
(
"path/tandem_bin"
,
"/usr/bin/tandem"
).
toString
();
QString
tandem_bin_path
=
settings
.
value
(
"path/tandem_bin"
,
""
).
toString
();
fillTandemBinPath
(
tandem_bin_path
,
false
);
_p_fasta_file_list
->
stringList
().
clear
();
...
...
@@ -194,6 +194,7 @@ TandemRunDialog::reset()
settings.setValue("path/identificationfiles",
QFileInfo(filenames[0]).absolutePath());
}*/
qDebug
()
<<
__FILE__
<<
" "
<<
__FUNCTION__
<<
" "
<<
__LINE__
;
}
void
...
...
@@ -466,14 +467,21 @@ void
TandemRunDialog
::
fillTandemBinPath
(
const
QString
&
tandem_bin_path_in
,
bool
popup_firefox
)
{
qDebug
()
<<
__FILE__
<<
" "
<<
__FUNCTION__
<<
" "
<<
__LINE__
<<
" "
<<
tandem_bin_path_in
;
QSettings
settings
;
if
(
tandem_bin_path_in
.
isEmpty
())
{
// try to find default X!Tandem, depending on platform
ui
->
tandem_bin_label
->
setText
(
"Please select the tandem.exe file path"
);
if
(
QFileInfo
(
"/usr/bin/tandem"
).
exists
())
{
fillTandemBinPath
(
"/usr/bin/tandem"
,
false
);
}
else
{
ui
->
exe_groupbox
->
setChecked
(
true
);
}
}
else
{
...
...
@@ -512,6 +520,7 @@ TandemRunDialog::fillTandemBinPath(const QString &tandem_bin_path_in,
tr
(
"%1 is not executable."
).
arg
(
tandem_bin_path
));
}
}
qDebug
()
<<
__FILE__
<<
" "
<<
__FUNCTION__
<<
" "
<<
__LINE__
;
}
...
...
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