mirror of
https://github.com/Athemis/PyDSF.git
synced 2025-04-05 14:46:03 +00:00
Properly clear previous data before processing new data
This commit is contained in:
parent
ebd3343b5b
commit
86a3fd382a
1 changed files with 6 additions and 1 deletions
|
@ -99,6 +99,9 @@ class Tasks(QObject):
|
||||||
self.pool.waitForDone()
|
self.pool.waitForDone()
|
||||||
return self.data
|
return self.data
|
||||||
|
|
||||||
|
def clear_data(self):
|
||||||
|
self.data = []
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
for task in self.tasks:
|
for task in self.tasks:
|
||||||
self.pool.start(task)
|
self.pool.start(task)
|
||||||
|
@ -254,6 +257,7 @@ class MainWindow(QMainWindow, Ui_MainWindow):
|
||||||
Slot documentation goes here.
|
Slot documentation goes here.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
self.remove_plate_tabs()
|
||||||
self.instrument = self.getSelectedInstrument()
|
self.instrument = self.getSelectedInstrument()
|
||||||
|
|
||||||
if self.listWidget_data.count() < 1:
|
if self.listWidget_data.count() < 1:
|
||||||
|
@ -288,7 +292,6 @@ class MainWindow(QMainWindow, Ui_MainWindow):
|
||||||
"Signal threshold is currently set to zero."),
|
"Signal threshold is currently set to zero."),
|
||||||
QMessageBox.Ok, QMessageBox.Ok)
|
QMessageBox.Ok, QMessageBox.Ok)
|
||||||
|
|
||||||
self.remove_plate_tabs()
|
|
||||||
self.progressBar.setEnabled(True)
|
self.progressBar.setEnabled(True)
|
||||||
self.statusBar.showMessage(_translate("MainWindow", "Processing..."))
|
self.statusBar.showMessage(_translate("MainWindow", "Processing..."))
|
||||||
|
|
||||||
|
@ -302,6 +305,8 @@ class MainWindow(QMainWindow, Ui_MainWindow):
|
||||||
# self.tasks.clear()
|
# self.tasks.clear()
|
||||||
# For now, only read the first entry
|
# For now, only read the first entry
|
||||||
exp = self.tasks.data[0]
|
exp = self.tasks.data[0]
|
||||||
|
# clear data in tasks object
|
||||||
|
self.tasks.clear_data()
|
||||||
|
|
||||||
for i in range(len(self.worker.exp.plates)):
|
for i in range(len(self.worker.exp.plates)):
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue