Skip to content
Snippets Groups Projects
Commit d14cffb5 authored by Langella Olivier's avatar Langella Olivier
Browse files

xtpcpp (0.2.26-1) stretch

parent 3862ecde
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ SET(SOFTWARE_NAME "X!TandemPipeline")
SET(XTPCPP_VERSION_MAJOR "0")
SET(XTPCPP_VERSION_MINOR "2")
SET(XTPCPP_VERSION_PATCH "25")
SET(XTPCPP_VERSION_PATCH "26")
SET(XTPCPP_VERSION "${XTPCPP_VERSION_MAJOR}.${XTPCPP_VERSION_MINOR}.${XTPCPP_VERSION_PATCH}")
# Set the CMAKE_PREFIX_PATH for the find_library fonction when using non
......
xtpcpp (0.2.26-1) stretch; urgency=medium
* display distinctively the FDR on peptides and on PSM
-- Olivier Langella <olivier.langella@u-psud.fr> Fri, 09 Nov 2018 10:50:11 +0100
xtpcpp (0.2.25-2) stretch; urgency=medium
* new version number 0.2.25
......
......@@ -444,7 +444,14 @@ TandemRunDialog::done(int r)
settings.setValue("tandem/condor_request_memory",
ui->request_memory_edit->text());
QDialog::done(r);
if(checkXtandemBin())
{
QDialog::done(r);
}
else
{
QDialog::reject();
}
return;
}
else // cancel, close or exc was pressed
......@@ -501,3 +508,61 @@ TandemRunDialog::fillTandemBinPath(const QString &tandem_bin_path_in,
{
}
}
bool
TandemRunDialog::checkXtandemBin()
{
QString tandem_bin_path = ui->tandem_bin_label->text();
QString tandem_install_text =
"Please check that X!Tandem is "
"installed on your computer.\nIt is available at "
":\nhttps://www.thegpm.org/tandem/\nOnce it is installed, "
"please "
"set the correct path to the tandem.exe file";
if(tandem_bin_path.isEmpty())
{
QMessageBox::warning(
this,
tr("Wrong X!Tandem configuration"),
tr("X!Tandem .exe file is not set.\n%1").arg(tandem_install_text));
QDesktopServices::openUrl(QUrl("https://www.thegpm.org/tandem/"));
}
else
{
QFileInfo tandem_bin(tandem_bin_path);
if(tandem_bin.isExecutable())
{
try
{
Utils::checkXtandemVersion(tandem_bin_path);
return true;
}
catch(pappso::PappsoException &error)
{
QMessageBox::warning(
this,
tr("Wrong X!Tandem exe file"),
tr("%1 does not seem to be a valid X!Tandem version.\n%2")
.arg(tandem_bin.absoluteFilePath())
.arg(tandem_install_text));
QDesktopServices::openUrl(QUrl("https://www.thegpm.org/tandem/"));
}
}
else
{
QMessageBox::warning(this,
tr("Wrong X!Tandem exe file"),
tr("%1 is not executable.\n%2")
.arg(tandem_bin_path)
.arg(tandem_install_text));
}
}
return false;
}
......@@ -68,7 +68,8 @@ class TandemRunDialog : public QDialog
private:
void fillPresetComboBox();
void fillTandemBinPath(const QString & tandem_bin_path, bool popup_firefox);
void fillTandemBinPath(const QString &tandem_bin_path, bool popup_firefox);
bool checkXtandemBin();
private:
Ui::TandemRunDialog *ui;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment