celldetective 1.3.9.post5__py3-none-any.whl → 1.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- celldetective/__init__.py +0 -3
- celldetective/_version.py +1 -1
- celldetective/events.py +2 -4
- celldetective/extra_properties.py +132 -0
- celldetective/gui/InitWindow.py +33 -45
- celldetective/gui/__init__.py +1 -0
- celldetective/gui/about.py +19 -15
- celldetective/gui/analyze_block.py +34 -19
- celldetective/gui/base_components.py +23 -0
- celldetective/gui/btrack_options.py +26 -34
- celldetective/gui/classifier_widget.py +68 -81
- celldetective/gui/configure_new_exp.py +113 -17
- celldetective/gui/control_panel.py +68 -141
- celldetective/gui/generic_signal_plot.py +9 -12
- celldetective/gui/gui_utils.py +49 -21
- celldetective/gui/json_readers.py +5 -4
- celldetective/gui/layouts.py +246 -22
- celldetective/gui/measurement_options.py +32 -17
- celldetective/gui/neighborhood_options.py +10 -13
- celldetective/gui/plot_measurements.py +21 -17
- celldetective/gui/plot_signals_ui.py +125 -72
- celldetective/gui/process_block.py +180 -123
- celldetective/gui/processes/compute_neighborhood.py +594 -0
- celldetective/gui/processes/measure_cells.py +5 -0
- celldetective/gui/processes/segment_cells.py +27 -6
- celldetective/gui/processes/track_cells.py +6 -0
- celldetective/gui/retrain_segmentation_model_options.py +12 -20
- celldetective/gui/retrain_signal_model_options.py +57 -56
- celldetective/gui/seg_model_loader.py +21 -62
- celldetective/gui/signal_annotator.py +129 -70
- celldetective/gui/signal_annotator2.py +431 -635
- celldetective/gui/signal_annotator_options.py +8 -11
- celldetective/gui/survival_ui.py +49 -95
- celldetective/gui/tableUI.py +28 -25
- celldetective/gui/thresholds_gui.py +617 -1221
- celldetective/gui/viewers.py +106 -39
- celldetective/gui/workers.py +9 -3
- celldetective/io.py +57 -20
- celldetective/measure.py +63 -27
- celldetective/neighborhood.py +342 -268
- celldetective/preprocessing.py +25 -17
- celldetective/relative_measurements.py +50 -29
- celldetective/scripts/analyze_signals.py +4 -1
- celldetective/scripts/measure_relative.py +4 -1
- celldetective/scripts/segment_cells.py +0 -6
- celldetective/scripts/track_cells.py +3 -1
- celldetective/scripts/train_segmentation_model.py +7 -4
- celldetective/signals.py +29 -14
- celldetective/tracking.py +7 -2
- celldetective/utils.py +36 -8
- {celldetective-1.3.9.post5.dist-info → celldetective-1.4.0.dist-info}/METADATA +24 -16
- {celldetective-1.3.9.post5.dist-info → celldetective-1.4.0.dist-info}/RECORD +57 -55
- {celldetective-1.3.9.post5.dist-info → celldetective-1.4.0.dist-info}/WHEEL +1 -1
- tests/test_qt.py +21 -21
- {celldetective-1.3.9.post5.dist-info → celldetective-1.4.0.dist-info}/entry_points.txt +0 -0
- {celldetective-1.3.9.post5.dist-info → celldetective-1.4.0.dist-info/licenses}/LICENSE +0 -0
- {celldetective-1.3.9.post5.dist-info → celldetective-1.4.0.dist-info}/top_level.txt +0 -0
celldetective/__init__.py
CHANGED
celldetective/_version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.
|
|
1
|
+
__version__ = "1.4.0"
|
celldetective/events.py
CHANGED
|
@@ -52,7 +52,7 @@ def switch_to_events(classes, event_times, max_times, origin_times=None, left_ce
|
|
|
52
52
|
>>> event_times = [5, 10, 15]
|
|
53
53
|
>>> max_times = [20, 20, 20]
|
|
54
54
|
>>> origin_times = [0, 0, 5]
|
|
55
|
-
>>> events, survival_times =
|
|
55
|
+
>>> events, survival_times = switch_to_events(classes, event_times, max_times, origin_times, FrameToMin=0.5)
|
|
56
56
|
# This would process the events considering left censorship and convert survival times to minutes.
|
|
57
57
|
|
|
58
58
|
"""
|
|
@@ -189,6 +189,7 @@ def compute_survival(df, class_of_interest, t_event, t_reference=None, FrameToMi
|
|
|
189
189
|
assert class_of_interest in cols,"The requested class cannot be found in the dataframe..."
|
|
190
190
|
assert t_event in cols,"The event time cannot be found in the dataframe..."
|
|
191
191
|
left_censored = False
|
|
192
|
+
first_detections = None
|
|
192
193
|
|
|
193
194
|
if not pairs:
|
|
194
195
|
groupby_cols = ['position','TRACK_ID']
|
|
@@ -209,10 +210,7 @@ def compute_survival(df, class_of_interest, t_event, t_reference=None, FrameToMi
|
|
|
209
210
|
assert t_reference in cols,"The reference time cannot be found in the dataframe..."
|
|
210
211
|
first_detections = df.groupby(groupby_cols)[t_reference].max().values
|
|
211
212
|
|
|
212
|
-
|
|
213
|
-
print(f"{classes=} {event_times=} {max_times=} {first_detections=}")
|
|
214
213
|
events, survival_times = switch_to_events(classes, event_times, max_times, origin_times=first_detections, left_censored=left_censored, FrameToMin=FrameToMin, cut_observation_time=cut_observation_time)
|
|
215
|
-
print(f"{events=} {survival_times=}")
|
|
216
214
|
|
|
217
215
|
ks = KaplanMeierFitter()
|
|
218
216
|
if len(events)>0:
|
|
@@ -245,6 +245,138 @@ def fraction_of_area_dark_intensity(regionmask, intensity_image, target_channel=
|
|
|
245
245
|
return float(np.sum(subregion)) / float(np.sum(regionmask))
|
|
246
246
|
|
|
247
247
|
|
|
248
|
+
def area_dark_intensity_nintyfive(regionmask, intensity_image, target_channel='adhesion_channel', fill_holes=True): #, target_channel='adhesion_channel'
|
|
249
|
+
|
|
250
|
+
subregion = (intensity_image < 0.95)*regionmask # under one, under 0.8, under 0.6, whatever value!
|
|
251
|
+
if fill_holes:
|
|
252
|
+
subregion = skm.label(subregion, connectivity=2, background=0)
|
|
253
|
+
subregion = fill_label_holes(subregion)
|
|
254
|
+
subregion[subregion>0] = 1
|
|
255
|
+
|
|
256
|
+
return float(np.sum(subregion))
|
|
257
|
+
|
|
258
|
+
def area_dark_intensity_ninty(regionmask, intensity_image, target_channel='adhesion_channel', fill_holes=True): #, target_channel='adhesion_channel'
|
|
259
|
+
|
|
260
|
+
subregion = (intensity_image < 0.90)*regionmask # under one, under 0.8, under 0.6, whatever value!
|
|
261
|
+
if fill_holes:
|
|
262
|
+
subregion = skm.label(subregion, connectivity=2, background=0)
|
|
263
|
+
subregion = fill_label_holes(subregion)
|
|
264
|
+
subregion[subregion>0] = 1
|
|
265
|
+
|
|
266
|
+
return float(np.sum(subregion))
|
|
267
|
+
|
|
268
|
+
def mean_dark_intensity_nintyfive(regionmask, intensity_image, target_channel='adhesion_channel', fill_holes=True):
|
|
269
|
+
"""
|
|
270
|
+
Calculate the mean intensity in a dark subregion below 95, handling NaN values.
|
|
271
|
+
|
|
272
|
+
"""
|
|
273
|
+
subregion = (intensity_image < 0.95) * regionmask
|
|
274
|
+
|
|
275
|
+
if fill_holes:
|
|
276
|
+
subregion = skm.label(subregion, connectivity=2, background=0)
|
|
277
|
+
subregion = fill_label_holes(subregion)
|
|
278
|
+
subregion[subregion > 0] = 1
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
masked_intensity = intensity_image[subregion == 1]
|
|
282
|
+
|
|
283
|
+
return float(np.nanmean(masked_intensity))
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
def mean_dark_intensity_nintyfive_fillhole_false(regionmask, intensity_image, target_channel='adhesion_channel'):
|
|
287
|
+
"""
|
|
288
|
+
Calculate the mean intensity in a dark subregion below 95, handling NaN values.
|
|
289
|
+
"""
|
|
290
|
+
subregion = (intensity_image < 0.95) * regionmask # Select dark regions within the mask
|
|
291
|
+
|
|
292
|
+
masked_intensity = intensity_image[subregion == 1] # Extract pixel values from the selected region
|
|
293
|
+
|
|
294
|
+
return float(np.nanmean(masked_intensity)) # Compute mean, ignoring NaNs
|
|
295
|
+
|
|
296
|
+
def mean_dark_intensity_ninty_fillhole_false(regionmask, intensity_image, target_channel='adhesion_channel'):
|
|
297
|
+
"""
|
|
298
|
+
Calculate the mean intensity in a dark subregion, handling NaN values.
|
|
299
|
+
"""
|
|
300
|
+
subregion = (intensity_image < 0.90) * regionmask # Select dark regions within the mask
|
|
301
|
+
|
|
302
|
+
masked_intensity = intensity_image[subregion == 1] # Extract pixel values from the selected region
|
|
303
|
+
|
|
304
|
+
return float(np.nanmean(masked_intensity)) # Compute mean, ignoring NaNs
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
def mean_dark_intensity_ninty(regionmask, intensity_image, target_channel='adhesion_channel', fill_holes=True):
|
|
308
|
+
"""
|
|
309
|
+
Calculate the mean intensity in a dark subregion below 90, handling NaN values.
|
|
310
|
+
|
|
311
|
+
"""
|
|
312
|
+
subregion = (intensity_image < 0.90) * regionmask
|
|
313
|
+
|
|
314
|
+
if fill_holes:
|
|
315
|
+
subregion = skm.label(subregion, connectivity=2, background=0)
|
|
316
|
+
subregion = fill_label_holes(subregion)
|
|
317
|
+
subregion[subregion > 0] = 1
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
masked_intensity = intensity_image[subregion == 1]
|
|
321
|
+
|
|
322
|
+
return float(np.nanmean(masked_intensity))
|
|
323
|
+
|
|
324
|
+
def mean_dark_intensity_eight_five(regionmask, intensity_image, target_channel='adhesion_channel', fill_holes=True):
|
|
325
|
+
"""
|
|
326
|
+
Calculate the mean intensity in a dark subregion below 85, handling NaN values.
|
|
327
|
+
|
|
328
|
+
"""
|
|
329
|
+
subregion = (intensity_image < 0.85) * regionmask
|
|
330
|
+
|
|
331
|
+
if fill_holes:
|
|
332
|
+
subregion = skm.label(subregion, connectivity=2, background=0)
|
|
333
|
+
subregion = fill_label_holes(subregion)
|
|
334
|
+
subregion[subregion > 0] = 1
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
masked_intensity = intensity_image[subregion == 1]
|
|
338
|
+
|
|
339
|
+
return float(np.nanmean(masked_intensity))
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
def mean_dark_intensity_eight_five_fillhole_false(regionmask, intensity_image, target_channel='adhesion_channel'):
|
|
343
|
+
|
|
344
|
+
subregion = (intensity_image < 0.85) * regionmask # Select dark regions within the mask
|
|
345
|
+
|
|
346
|
+
masked_intensity = intensity_image[subregion == 1] # Extract pixel values from the selected region
|
|
347
|
+
|
|
348
|
+
return float(np.nanmean(masked_intensity)) # Compute mean, ignoring NaNs
|
|
349
|
+
|
|
350
|
+
def percentile_zero_one_dark_intensity_ninty(regionmask, intensity_image, target_channel='adhesion_channel'):
|
|
351
|
+
|
|
352
|
+
subregion = (intensity_image < 0.95) * regionmask
|
|
353
|
+
return float(np.nanpercentile(intensity_image[subregion],0.1))
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
def percentile_one_dark_intensity_ninty(regionmask, intensity_image, target_channel='adhesion_channel'):
|
|
357
|
+
|
|
358
|
+
subregion = (intensity_image < 0.95) * regionmask
|
|
359
|
+
return float(np.nanpercentile(intensity_image[subregion],1))
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
def percentile_five_dark_intensity_ninty(regionmask, intensity_image, target_channel='adhesion_channel'):
|
|
363
|
+
|
|
364
|
+
subregion = (intensity_image < 0.95) * regionmask
|
|
365
|
+
return float(np.nanpercentile(intensity_image[subregion],5))
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
def percentile_ten_dark_intensity_ninty(regionmask, intensity_image, target_channel='adhesion_channel'):
|
|
369
|
+
|
|
370
|
+
subregion = (intensity_image < 0.95) * regionmask
|
|
371
|
+
return float(np.nanpercentile(intensity_image[subregion],10))
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
def percentile_ninty_five_dark_intensity_ninty(regionmask, intensity_image, target_channel='adhesion_channel'):
|
|
375
|
+
|
|
376
|
+
subregion = (intensity_image < 0.95) * regionmask
|
|
377
|
+
return float(np.nanpercentile(intensity_image[subregion],95))
|
|
378
|
+
|
|
379
|
+
|
|
248
380
|
def intensity_percentile_ninety_nine(regionmask, intensity_image):
|
|
249
381
|
return np.nanpercentile(intensity_image[regionmask],99)
|
|
250
382
|
|
celldetective/gui/InitWindow.py
CHANGED
|
@@ -1,29 +1,27 @@
|
|
|
1
|
+
import gc
|
|
2
|
+
import json
|
|
1
3
|
import os
|
|
2
|
-
|
|
3
|
-
from PyQt5.QtWidgets import QApplication, QMainWindow
|
|
4
|
-
from PyQt5.QtWidgets import QFileDialog, QDialog, QWidget, QVBoxLayout, QCheckBox, QHBoxLayout, QLabel, QLineEdit, QPushButton, QMessageBox, QMenu, QAction
|
|
5
|
-
from PyQt5.QtCore import Qt, QUrl
|
|
6
|
-
from PyQt5.QtGui import QIcon, QDesktopServices, QIntValidator
|
|
7
|
-
|
|
8
4
|
from glob import glob
|
|
9
|
-
from
|
|
10
|
-
from fonticon_mdi6 import MDI6
|
|
11
|
-
|
|
12
|
-
from celldetective.gui.about import AboutWidget
|
|
13
|
-
from celldetective.io import correct_annotation
|
|
14
|
-
from celldetective.utils import download_zenodo_file
|
|
15
|
-
from celldetective.gui.gui_utils import center_window
|
|
16
|
-
from celldetective.gui import Styles, ControlPanel, ConfigNewExperiment
|
|
5
|
+
from subprocess import Popen, check_output
|
|
17
6
|
|
|
18
|
-
import
|
|
19
|
-
from
|
|
7
|
+
from PyQt5.QtCore import QUrl, Qt
|
|
8
|
+
from PyQt5.QtGui import QDesktopServices, QIntValidator
|
|
9
|
+
from PyQt5.QtWidgets import QAction, QApplication, QCheckBox, QDialog, QFileDialog, QHBoxLayout, QLabel, QLineEdit, \
|
|
10
|
+
QMenu, QPushButton, QVBoxLayout
|
|
11
|
+
from fonticon_mdi6 import MDI6
|
|
20
12
|
from psutil import cpu_count
|
|
21
|
-
import
|
|
13
|
+
from superqt.fonticon import icon
|
|
22
14
|
|
|
15
|
+
from celldetective.gui import ConfigNewExperiment, ControlPanel, CelldetectiveMainWindow, CelldetectiveWidget
|
|
16
|
+
from celldetective.gui.about import AboutWidget
|
|
17
|
+
from celldetective.gui.gui_utils import center_window, generic_message
|
|
23
18
|
from celldetective.gui.processes.downloader import DownloadProcess
|
|
24
19
|
from celldetective.gui.workers import ProgressWindow
|
|
20
|
+
from celldetective.io import correct_annotation, extract_well_name_and_number
|
|
21
|
+
from celldetective.utils import download_zenodo_file, pretty_table
|
|
25
22
|
|
|
26
|
-
|
|
23
|
+
|
|
24
|
+
class AppInitWindow(CelldetectiveMainWindow):
|
|
27
25
|
|
|
28
26
|
"""
|
|
29
27
|
Initial window to set the experiment folder or create a new one.
|
|
@@ -36,7 +34,7 @@ class AppInitWindow(QMainWindow, Styles):
|
|
|
36
34
|
self.parent_window = parent_window
|
|
37
35
|
self.setWindowTitle("celldetective")
|
|
38
36
|
|
|
39
|
-
self.n_threads = min([1,cpu_count()])
|
|
37
|
+
self.n_threads = min([1, cpu_count()])
|
|
40
38
|
|
|
41
39
|
try:
|
|
42
40
|
check_output('nvidia-smi')
|
|
@@ -48,7 +46,6 @@ class AppInitWindow(QMainWindow, Styles):
|
|
|
48
46
|
|
|
49
47
|
self.soft_path = software_location
|
|
50
48
|
self.onlyInt = QIntValidator()
|
|
51
|
-
self.setWindowIcon(QIcon(os.sep.join([self.soft_path,'celldetective','icons','logo.png'])))
|
|
52
49
|
|
|
53
50
|
self._createActions()
|
|
54
51
|
self._createMenuBar()
|
|
@@ -58,9 +55,9 @@ class AppInitWindow(QMainWindow, Styles):
|
|
|
58
55
|
self.geometry = self.screen.availableGeometry()
|
|
59
56
|
self.screen_width, self.screen_height = self.geometry.getRect()[-2:]
|
|
60
57
|
|
|
61
|
-
central_widget =
|
|
58
|
+
central_widget = CelldetectiveWidget()
|
|
62
59
|
self.vertical_layout = QVBoxLayout(central_widget)
|
|
63
|
-
self.vertical_layout.setContentsMargins(15,15,15,15)
|
|
60
|
+
self.vertical_layout.setContentsMargins(15, 15, 15, 15)
|
|
64
61
|
self.vertical_layout.addWidget(QLabel("Experiment folder:"))
|
|
65
62
|
self.create_locate_exp_hbox()
|
|
66
63
|
self.create_buttons_hbox()
|
|
@@ -79,7 +76,7 @@ class AppInitWindow(QMainWindow, Styles):
|
|
|
79
76
|
def create_locate_exp_hbox(self):
|
|
80
77
|
|
|
81
78
|
self.locate_exp_layout = QHBoxLayout()
|
|
82
|
-
self.locate_exp_layout.setContentsMargins(0,5,0,0)
|
|
79
|
+
self.locate_exp_layout.setContentsMargins(0, 5, 0, 0)
|
|
83
80
|
self.experiment_path_selection = QLineEdit()
|
|
84
81
|
self.experiment_path_selection.setAlignment(Qt.AlignLeft)
|
|
85
82
|
self.experiment_path_selection.setEnabled(True)
|
|
@@ -266,7 +263,7 @@ class AppInitWindow(QMainWindow, Styles):
|
|
|
266
263
|
|
|
267
264
|
print('setting memory and threads')
|
|
268
265
|
|
|
269
|
-
self.ThreadsWidget =
|
|
266
|
+
self.ThreadsWidget = CelldetectiveWidget()
|
|
270
267
|
self.ThreadsWidget.setWindowTitle("Threads")
|
|
271
268
|
layout = QVBoxLayout()
|
|
272
269
|
self.ThreadsWidget.setLayout(layout)
|
|
@@ -382,24 +379,21 @@ class AppInitWindow(QMainWindow, Styles):
|
|
|
382
379
|
wells = glob(os.sep.join([self.exp_dir,"W*"]))
|
|
383
380
|
self.number_of_wells = len(wells)
|
|
384
381
|
if self.number_of_wells==0:
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
msgBox.setText("No well was found in the experiment folder.\nPlease respect the W*/ nomenclature...")
|
|
388
|
-
msgBox.setWindowTitle("Error")
|
|
389
|
-
msgBox.setStandardButtons(QMessageBox.Ok)
|
|
390
|
-
returnValue = msgBox.exec()
|
|
391
|
-
if returnValue == QMessageBox.Ok:
|
|
392
|
-
return None
|
|
382
|
+
generic_message("No well was found in the experiment folder.\nPlease respect the W*/ nomenclature...", msg_type="critical")
|
|
383
|
+
return None
|
|
393
384
|
else:
|
|
394
385
|
if self.number_of_wells==1:
|
|
395
386
|
print(f"Found {self.number_of_wells} well...")
|
|
396
387
|
elif self.number_of_wells>1:
|
|
397
388
|
print(f"Found {self.number_of_wells} wells...")
|
|
398
|
-
|
|
389
|
+
|
|
390
|
+
number_pos = {}
|
|
399
391
|
for w in wells:
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
392
|
+
well_name, well_nbr = extract_well_name_and_number(w)
|
|
393
|
+
position_folders = glob(os.sep.join([w,f"{well_nbr}*", os.sep]))
|
|
394
|
+
number_pos.update({well_name: len(position_folders)})
|
|
395
|
+
print(f"Number of positions per well:")
|
|
396
|
+
pretty_table(number_pos)
|
|
403
397
|
|
|
404
398
|
with open(os.sep.join([self.soft_path,'celldetective','recent.txt']), 'a+') as f:
|
|
405
399
|
f.write(self.exp_dir+'\n')
|
|
@@ -423,12 +417,6 @@ class AppInitWindow(QMainWindow, Styles):
|
|
|
423
417
|
else:
|
|
424
418
|
return None
|
|
425
419
|
if not os.path.exists(os.sep.join([self.foldername,"config.ini"])):
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
msgBox.setWindowTitle("Warning")
|
|
430
|
-
msgBox.setStandardButtons(QMessageBox.Ok)
|
|
431
|
-
returnValue = msgBox.exec()
|
|
432
|
-
if returnValue == QMessageBox.Ok:
|
|
433
|
-
self.experiment_path_selection.setText('')
|
|
434
|
-
return None
|
|
420
|
+
generic_message("No configuration can be found in the selected folder...", msg_type="warning")
|
|
421
|
+
self.experiment_path_selection.setText('')
|
|
422
|
+
return None
|
celldetective/gui/__init__.py
CHANGED
celldetective/gui/about.py
CHANGED
|
@@ -1,44 +1,48 @@
|
|
|
1
|
-
from PyQt5.QtWidgets import
|
|
1
|
+
from PyQt5.QtWidgets import QVBoxLayout, QLabel
|
|
2
2
|
from PyQt5.QtGui import QPixmap
|
|
3
3
|
from PyQt5.QtCore import Qt
|
|
4
|
+
|
|
5
|
+
from celldetective.gui import CelldetectiveWidget
|
|
4
6
|
from celldetective.utils import get_software_location
|
|
5
7
|
import os
|
|
6
8
|
from celldetective.gui.gui_utils import center_window
|
|
7
9
|
from celldetective._version import __version__
|
|
8
10
|
|
|
9
|
-
class AboutWidget(QWidget):
|
|
10
11
|
|
|
12
|
+
class AboutWidget(CelldetectiveWidget):
|
|
13
|
+
|
|
11
14
|
def __init__(self):
|
|
12
|
-
|
|
13
15
|
super().__init__()
|
|
14
16
|
self.setWindowTitle("About celldetective")
|
|
15
|
-
self.
|
|
17
|
+
self.setMaximumWidth(320)
|
|
16
18
|
center_window(self)
|
|
17
|
-
|
|
18
|
-
|
|
19
|
+
|
|
20
|
+
logo = QPixmap(os.sep.join([get_software_location(), 'celldetective', 'icons', 'logo.png']))
|
|
21
|
+
|
|
19
22
|
# Create the layout
|
|
20
23
|
layout = QVBoxLayout(self)
|
|
21
24
|
img_label = QLabel('')
|
|
22
25
|
img_label.setPixmap(logo)
|
|
23
26
|
layout.addWidget(img_label, alignment=Qt.AlignCenter)
|
|
24
|
-
|
|
27
|
+
|
|
25
28
|
self.soft_name = QLabel('celldetective')
|
|
26
29
|
self.soft_name.setStyleSheet("""font-weight: bold;
|
|
27
30
|
font-size: 18px;
|
|
28
31
|
""")
|
|
29
32
|
layout.addWidget(self.soft_name, alignment=Qt.AlignCenter)
|
|
30
|
-
|
|
31
|
-
self.version_lbl = QLabel(f"Version {__version__} <a href=\"https://github.com/remyeltorro/celldetective
|
|
33
|
+
|
|
34
|
+
self.version_lbl = QLabel(f"Version {__version__} <a href=\"https://github.com/remyeltorro/celldetective"
|
|
35
|
+
f"/releases\">(release notes)</a>")
|
|
32
36
|
self.version_lbl.setOpenExternalLinks(True)
|
|
33
37
|
layout.addWidget(self.version_lbl, alignment=Qt.AlignCenter)
|
|
34
|
-
|
|
38
|
+
|
|
35
39
|
self.lab_lbl = QLabel("Developed at Laboratoire Adhésion et Inflammation (LAI) INSERM U1067 CNRS UMR 7333")
|
|
36
40
|
self.lab_lbl.setWordWrap(True)
|
|
37
41
|
layout.addWidget(self.lab_lbl, alignment=Qt.AlignCenter)
|
|
38
|
-
|
|
39
|
-
self.centuri_mention = QLabel(
|
|
42
|
+
|
|
43
|
+
self.centuri_mention = QLabel(
|
|
44
|
+
"The project leading to this publication has received funding from France 2030, the French Government "
|
|
45
|
+
"program managed by the French National Research Agency (ANR-16-CONV-0001) and from Excellence Initiative "
|
|
46
|
+
"of Aix-Marseille University - A*MIDEX')")
|
|
40
47
|
self.centuri_mention.setWordWrap(True)
|
|
41
48
|
layout.addWidget(self.centuri_mention, alignment=Qt.AlignCenter)
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
from PyQt5.QtWidgets import QFrame, QLabel, QPushButton, QVBoxLayout, \
|
|
2
|
-
|
|
2
|
+
QSpacerItem, QSizePolicy
|
|
3
3
|
from PyQt5.QtCore import Qt, QSize
|
|
4
4
|
from PyQt5.QtGui import QIcon
|
|
5
|
-
from celldetective.gui.plot_measurements import ConfigMeasurementsPlot
|
|
6
5
|
from celldetective.gui import ConfigSurvival, ConfigSignalPlot
|
|
7
6
|
import os
|
|
8
7
|
from celldetective.gui import Styles
|
|
8
|
+
from glob import glob
|
|
9
|
+
|
|
10
|
+
from celldetective.gui.gui_utils import generic_message
|
|
11
|
+
|
|
9
12
|
|
|
10
13
|
class AnalysisPanel(QFrame, Styles):
|
|
11
14
|
def __init__(self, parent_window, title=None):
|
|
@@ -14,10 +17,11 @@ class AnalysisPanel(QFrame, Styles):
|
|
|
14
17
|
self.parent_window = parent_window
|
|
15
18
|
self.title = title
|
|
16
19
|
if self.title is None:
|
|
17
|
-
self.title=''
|
|
20
|
+
self.title = ''
|
|
18
21
|
self.exp_channels = self.parent_window.exp_channels
|
|
19
22
|
self.exp_dir = self.parent_window.exp_dir
|
|
20
23
|
self.soft_path = self.parent_window.parent_window.soft_path
|
|
24
|
+
self.pop_exists = False
|
|
21
25
|
|
|
22
26
|
self.setFrameStyle(QFrame.StyledPanel | QFrame.Raised)
|
|
23
27
|
self.grid = QVBoxLayout(self)
|
|
@@ -40,7 +44,7 @@ class AnalysisPanel(QFrame, Styles):
|
|
|
40
44
|
self.grid.addWidget(panel_title, alignment=Qt.AlignCenter)
|
|
41
45
|
|
|
42
46
|
self.survival_btn = QPushButton("plot survival")
|
|
43
|
-
self.survival_btn.setIcon(QIcon(QIcon(os.sep.join([self.soft_path,'celldetective','icons','survival2.png']))))
|
|
47
|
+
self.survival_btn.setIcon(QIcon(QIcon(os.sep.join([self.soft_path, 'celldetective', 'icons', 'survival2.png']))))
|
|
44
48
|
self.survival_btn.setStyleSheet(self.button_style_sheet_2)
|
|
45
49
|
self.survival_btn.setIconSize(QSize(35, 35))
|
|
46
50
|
self.survival_btn.clicked.connect(self.configure_survival)
|
|
@@ -55,27 +59,38 @@ class AnalysisPanel(QFrame, Styles):
|
|
|
55
59
|
self.grid.addWidget(signal_lbl, alignment=Qt.AlignCenter)
|
|
56
60
|
|
|
57
61
|
self.plot_signal_btn = QPushButton("plot signals")
|
|
58
|
-
self.plot_signal_btn.setIcon(QIcon(QIcon(os.sep.join([self.soft_path,'celldetective','icons','signals_icon.png']))))
|
|
62
|
+
self.plot_signal_btn.setIcon(QIcon(QIcon(os.sep.join([self.soft_path, 'celldetective', 'icons', 'signals_icon.png']))))
|
|
59
63
|
self.plot_signal_btn.setStyleSheet(self.button_style_sheet_2)
|
|
60
64
|
self.plot_signal_btn.setIconSize(QSize(35, 35))
|
|
61
65
|
self.plot_signal_btn.clicked.connect(self.configure_plot_signals)
|
|
62
66
|
self.grid.addWidget(self.plot_signal_btn)
|
|
63
67
|
|
|
64
|
-
|
|
65
|
-
self.grid.addItem(
|
|
68
|
+
vertical_spacer = QSpacerItem(20, 40, QSizePolicy.Minimum, QSizePolicy.Expanding)
|
|
69
|
+
self.grid.addItem(vertical_spacer)
|
|
66
70
|
|
|
71
|
+
def check_for_tables(self):
|
|
72
|
+
|
|
73
|
+
for population in self.parent_window.populations:
|
|
74
|
+
tables = glob(self.exp_dir + os.sep.join(['W*', '*', 'output', 'tables', f'trajectories_{population}.csv']))
|
|
75
|
+
if len(tables) > 0:
|
|
76
|
+
self.pop_exists = True
|
|
77
|
+
|
|
67
78
|
def configure_survival(self):
|
|
68
|
-
|
|
69
|
-
self.
|
|
70
|
-
self.
|
|
79
|
+
|
|
80
|
+
self.check_for_tables()
|
|
81
|
+
if self.pop_exists:
|
|
82
|
+
self.configSurvival = ConfigSurvival(self)
|
|
83
|
+
self.configSurvival.show()
|
|
84
|
+
else:
|
|
85
|
+
generic_message("No population table could be found... Abort...")
|
|
86
|
+
return None
|
|
71
87
|
|
|
72
88
|
def configure_plot_signals(self):
|
|
73
|
-
|
|
74
|
-
self.
|
|
75
|
-
self.
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
self.ConfigMeasurementsPlot_wg.show()
|
|
89
|
+
|
|
90
|
+
self.check_for_tables()
|
|
91
|
+
if self.pop_exists:
|
|
92
|
+
self.ConfigSignalPlot = ConfigSignalPlot(self)
|
|
93
|
+
self.ConfigSignalPlot.show()
|
|
94
|
+
else:
|
|
95
|
+
generic_message("No population table could be found... Abort...")
|
|
96
|
+
return None
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
from PyQt5.QtWidgets import QMainWindow, QWidget, QDialog
|
|
2
|
+
from PyQt5.QtCore import Qt
|
|
3
|
+
from celldetective.gui import Styles
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class CelldetectiveWidget(QWidget, Styles):
|
|
7
|
+
def __init__(self, *args, **kwargs):
|
|
8
|
+
super().__init__(*args, **kwargs)
|
|
9
|
+
self.setWindowIcon(self.celldetective_icon)
|
|
10
|
+
self.setAttribute(Qt.WA_DeleteOnClose)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class CelldetectiveMainWindow(QMainWindow, Styles):
|
|
14
|
+
def __init__(self, *args, **kwargs):
|
|
15
|
+
super().__init__(*args, **kwargs)
|
|
16
|
+
self.setWindowIcon(self.celldetective_icon)
|
|
17
|
+
self.setAttribute(Qt.WA_DeleteOnClose)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class CelldetectiveDialog(QDialog, Styles):
|
|
21
|
+
def __init__(self, *args, **kwargs):
|
|
22
|
+
super().__init__(*args, **kwargs)
|
|
23
|
+
self.setWindowIcon(self.celldetective_icon)
|