Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PAPPSO
xtpcpp
Commits
df821dc4
Commit
df821dc4
authored
Feb 08, 2021
by
Langella Olivier
Browse files
xtpcpp (0.4.22-1~buster1) buster
parent
ceb7991d
Changes
6
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
df821dc4
...
...
@@ -8,8 +8,8 @@ PROJECT(xtpcpp CXX)
set
(
XTPCPP_VERSION_MAJOR
"0"
)
set
(
XTPCPP_VERSION_MINOR
"4"
)
set
(
XTPCPP_VERSION_PATCH
"2
0
"
)
set
(
VERSION 0.4.2
0
)
set
(
XTPCPP_VERSION_PATCH
"2
2
"
)
set
(
VERSION 0.4.2
2
)
set
(
XTPCPP_VERSION
"
${
XTPCPP_VERSION_MAJOR
}
.
${
XTPCPP_VERSION_MINOR
}
.
${
XTPCPP_VERSION_PATCH
}
"
)
#depending on libpappsomspp version :
...
...
debian/changelog
View file @
df821dc4
xtpcpp (0.4.22-1~buster1) buster; urgency=medium
* config filename reversed to xtpcpp
-- Olivier Langella <olivier.langella@u-psud.fr> Mon, 08 Feb 2021 14:27:40 +0100
xtpcpp (0.4.21-1~buster1) buster; urgency=medium
* mgf absolute file path
-- Olivier Langella <olivier.langella@u-psud.fr> Fri, 05 Feb 2021 13:43:40 +0100
xtpcpp (0.4.20-1~buster1) buster; urgency=medium
* fix recongnizing mgf files in tdf directory
...
...
src/gui/mainwindow.cpp
View file @
df821dc4
...
...
@@ -48,7 +48,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::Main)
_p_app
->
setOrganizationName
(
"PAPPSO"
);
_p_app
->
setOrganizationDomain
(
"pappso.inra.fr"
);
_p_app
->
setApplicationName
(
SOFTWARE_NAME
);
_p_app
->
setApplicationName
(
"xtpcpp"
);
_p_app
->
setApplicationVersion
(
XTPCPP_VERSION
);
mp_worker
=
new
WorkerThread
(
this
);
...
...
src/gui/tandem_run_dialog/tandemrundialog.cpp
View file @
df821dc4
...
...
@@ -457,7 +457,7 @@ TandemRunDialog::selectTdfFolder()
if
(
Utils
::
guessDataFileFormatFromFile
(
file
.
absoluteFilePath
())
==
pappso
::
MzFormat
::
MGF
)
{
results
.
append
(
file
.
absolutePath
());
results
.
append
(
file
.
absolute
File
Path
());
}
}
qDebug
()
<<
results
;
...
...
src/utils/utils.cpp
View file @
df821dc4
...
...
@@ -467,7 +467,7 @@ Utils::computeFdr(std::size_t count_decoy, std::size_t count_target)
}
pappso
::
MzFormat
Utils
::
guessDataFileFormatFromFile
(
QString
filename
)
Utils
::
guessDataFileFormatFromFile
(
const
QString
&
filename
)
{
qDebug
()
<<
filename
;
QString
extension
=
QFileInfo
(
filename
).
suffix
().
toLower
();
...
...
src/utils/utils.h
View file @
df821dc4
...
...
@@ -45,5 +45,5 @@ class Utils
static
std
::
vector
<
std
::
pair
<
pappso
::
pappso_double
,
size_t
>>
getHistogram
(
std
::
vector
<
pappso
::
pappso_double
>
data_values
,
unsigned
int
number_of_class
);
static
pappso
::
MzFormat
guessDataFileFormatFromFile
(
QString
filename
);
static
pappso
::
MzFormat
guessDataFileFormatFromFile
(
const
QString
&
filename
);
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment