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
Show more breadcrumbs
PAPPSO
xtpcpp
Commits
e9b60531
Commit
e9b60531
authored
4 years ago
by
Renne Thomas
Browse files
Options
Downloads
Patches
Plain Diff
Add xicarea in other objects
parent
145079c1
No related branches found
No related tags found
1 merge request
!33
Multiples Corrections and features implementations
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/CMakeLists.txt
+1
-1
1 addition, 1 deletion
src/CMakeLists.txt
src/gui/workerthread.cpp
+10
-10
10 additions, 10 deletions
src/gui/workerthread.cpp
with
11 additions
and
11 deletions
src/CMakeLists.txt
+
1
−
1
View file @
e9b60531
...
...
@@ -105,7 +105,7 @@ set(CPP_FILES
output/ods/simplesheet.cpp
output/ods/spectrasheet.cpp
output/ods/spectrasheetall.cpp
#
output/ods/xicareasheet.cpp
output/ods/xicareasheet.cpp
output/exportfastafile.cpp
output/masschroqml.cpp
output/masschroqprm.cpp
...
...
This diff is collapsed.
Click to expand it.
src/gui/workerthread.cpp
+
10
−
10
View file @
e9b60531
...
...
@@ -46,7 +46,7 @@
#include
"project_view/projectwindow.h"
#include
"../core/tandem_run/tandembatchprocess.h"
#include
"../core/tandem_run/tandemcondorprocess.h"
//
#include "../output/ods/xicareasheet.h"
#include
"../output/ods/xicareasheet.h"
#include
<QSettings>
WorkerThread
::
WorkerThread
(
MainWindow
*
p_main_window
)
...
...
@@ -876,13 +876,13 @@ void
WorkerThread
::
doWriteXicAreaInCsv
(
QString
filename
,
std
::
vector
<
XicBox
*>
xic_boxs
)
{
//
CalcWriterInterface *p_writer = nullptr;
//
//
emit loadingMessage(tr("writing TSV files, please wait"));
//
p_writer = new TsvDirectoryWriter(filename);
//
XicAreaSheet(p_writer, xic_boxs);
//
bool all_data = true;
//
XicAreaSheet(p_writer, xic_boxs, all_data);
//
p_writer->close();
//
emit exportXicToCsvFinished();
CalcWriterInterface
*
p_writer
=
nullptr
;
emit
loadingMessage
(
tr
(
"writing TSV files, please wait"
));
p_writer
=
new
TsvDirectoryWriter
(
filename
);
XicAreaSheet
(
p_writer
,
xic_boxs
);
bool
all_data
=
true
;
XicAreaSheet
(
p_writer
,
xic_boxs
,
all_data
);
p_writer
->
close
();
emit
exportXicToCsvFinished
();
}
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