Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pappsomspp
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
Show more breadcrumbs
PAPPSO
pappsomspp
Merge requests
!5
Correct tmp dir error
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Correct tmp dir error
renne
into
master
Overview
0
Commits
11
Pipelines
0
Changes
1
Merged
Renne Thomas
requested to merge
renne
into
master
4 years ago
Overview
0
Commits
11
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
version 2
741e1cd0
4 years ago
version 1
b3cc846a
4 years ago
master (base)
and
latest version
latest version
a0dfecef
11 commits,
4 years ago
version 2
741e1cd0
13 commits,
4 years ago
version 1
b3cc846a
10 commits,
4 years ago
1 file
+
1
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/pappsomspp/processing/tandemwrapper/tandemwrapperrun.cpp
+
1
−
3
Options
@@ -54,14 +54,13 @@ TandemWrapperRun::TandemWrapperRun(const QString &tandem_binary,
{
m_centroidOptions
=
"20000 1. 3 10."
;
}
if
(
!
tmp_dir
.
isEmpty
())
{
mpa_temporaryDirectory
=
new
QTemporaryDir
(
tmp_dir
+
"/xtpwrp"
);
}
else
{
mpa_temporaryDirectory
=
new
QTemporaryDir
(
QDir
::
tempPath
());
mpa_temporaryDirectory
=
new
QTemporaryDir
(
QDir
::
tempPath
()
+
"/xtpwrp"
);
}
// mpa_temporaryDirectory->setAutoRemove(false);
}
@@ -309,7 +308,6 @@ TandemWrapperRun::wrapTandemInputFile(const QString &tandem_input_file)
mpa_temporaryDirectory
->
filePath
(
"input_tandem.xml"
);
QString
wrapped_tandem_output
=
mpa_temporaryDirectory
->
filePath
(
"output_tandem.xml"
);
XtandemInputSaxHandler
wrap_input
(
mzxml_data_file_name
,
wrapped_tandem_input
,
wrapped_tandem_output
);
Loading