celldetective 1.3.9.post5__py3-none-any.whl → 1.4.1__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.
Files changed (94) hide show
  1. celldetective/__init__.py +0 -3
  2. celldetective/_version.py +1 -1
  3. celldetective/events.py +2 -4
  4. celldetective/exceptions.py +11 -0
  5. celldetective/extra_properties.py +132 -0
  6. celldetective/filters.py +7 -1
  7. celldetective/gui/InitWindow.py +37 -46
  8. celldetective/gui/__init__.py +3 -9
  9. celldetective/gui/about.py +19 -15
  10. celldetective/gui/analyze_block.py +34 -19
  11. celldetective/gui/base_annotator.py +786 -0
  12. celldetective/gui/base_components.py +23 -0
  13. celldetective/gui/classifier_widget.py +86 -94
  14. celldetective/gui/configure_new_exp.py +163 -46
  15. celldetective/gui/control_panel.py +76 -146
  16. celldetective/gui/{signal_annotator.py → event_annotator.py} +533 -1438
  17. celldetective/gui/generic_signal_plot.py +11 -13
  18. celldetective/gui/gui_utils.py +54 -23
  19. celldetective/gui/help/neighborhood.json +2 -2
  20. celldetective/gui/json_readers.py +5 -4
  21. celldetective/gui/layouts.py +265 -31
  22. celldetective/gui/{signal_annotator2.py → pair_event_annotator.py} +433 -635
  23. celldetective/gui/plot_measurements.py +21 -17
  24. celldetective/gui/plot_signals_ui.py +125 -72
  25. celldetective/gui/process_block.py +283 -188
  26. celldetective/gui/processes/compute_neighborhood.py +594 -0
  27. celldetective/gui/processes/downloader.py +37 -34
  28. celldetective/gui/processes/measure_cells.py +19 -8
  29. celldetective/gui/processes/segment_cells.py +47 -11
  30. celldetective/gui/processes/track_cells.py +18 -13
  31. celldetective/gui/seg_model_loader.py +21 -62
  32. celldetective/gui/settings/__init__.py +7 -0
  33. celldetective/gui/settings/_settings_base.py +70 -0
  34. celldetective/gui/{retrain_signal_model_options.py → settings/_settings_event_model_training.py} +54 -109
  35. celldetective/gui/{measurement_options.py → settings/_settings_measurements.py} +54 -92
  36. celldetective/gui/{neighborhood_options.py → settings/_settings_neighborhood.py} +10 -13
  37. celldetective/gui/settings/_settings_segmentation.py +49 -0
  38. celldetective/gui/{retrain_segmentation_model_options.py → settings/_settings_segmentation_model_training.py} +38 -92
  39. celldetective/gui/{signal_annotator_options.py → settings/_settings_signal_annotator.py} +78 -103
  40. celldetective/gui/{btrack_options.py → settings/_settings_tracking.py} +85 -116
  41. celldetective/gui/styles.py +2 -1
  42. celldetective/gui/survival_ui.py +49 -95
  43. celldetective/gui/tableUI.py +53 -25
  44. celldetective/gui/table_ops/__init__.py +0 -0
  45. celldetective/gui/table_ops/merge_groups.py +118 -0
  46. celldetective/gui/thresholds_gui.py +617 -1221
  47. celldetective/gui/viewers.py +107 -42
  48. celldetective/gui/workers.py +8 -4
  49. celldetective/io.py +137 -57
  50. celldetective/links/zenodo.json +145 -144
  51. celldetective/measure.py +94 -53
  52. celldetective/neighborhood.py +342 -268
  53. celldetective/preprocessing.py +56 -35
  54. celldetective/regionprops/_regionprops.py +16 -5
  55. celldetective/relative_measurements.py +50 -29
  56. celldetective/scripts/analyze_signals.py +4 -1
  57. celldetective/scripts/measure_cells.py +5 -5
  58. celldetective/scripts/measure_relative.py +20 -12
  59. celldetective/scripts/segment_cells.py +4 -10
  60. celldetective/scripts/segment_cells_thresholds.py +3 -3
  61. celldetective/scripts/track_cells.py +10 -8
  62. celldetective/scripts/train_segmentation_model.py +18 -6
  63. celldetective/signals.py +29 -14
  64. celldetective/tracking.py +14 -3
  65. celldetective/utils.py +91 -62
  66. {celldetective-1.3.9.post5.dist-info → celldetective-1.4.1.dist-info}/METADATA +24 -16
  67. celldetective-1.4.1.dist-info/RECORD +123 -0
  68. {celldetective-1.3.9.post5.dist-info → celldetective-1.4.1.dist-info}/WHEEL +1 -1
  69. tests/gui/__init__.py +0 -0
  70. tests/gui/test_new_project.py +228 -0
  71. tests/gui/test_project.py +99 -0
  72. tests/test_preprocessing.py +2 -2
  73. celldetective/models/segmentation_effectors/ricm_bf_all_last/config_input.json +0 -79
  74. celldetective/models/segmentation_effectors/ricm_bf_all_last/ricm_bf_all_last +0 -0
  75. celldetective/models/segmentation_effectors/ricm_bf_all_last/training_instructions.json +0 -37
  76. celldetective/models/segmentation_effectors/test-transfer/config_input.json +0 -39
  77. celldetective/models/segmentation_effectors/test-transfer/test-transfer +0 -0
  78. celldetective/models/signal_detection/NucCond/classification_loss.png +0 -0
  79. celldetective/models/signal_detection/NucCond/classifier.h5 +0 -0
  80. celldetective/models/signal_detection/NucCond/config_input.json +0 -1
  81. celldetective/models/signal_detection/NucCond/log_classifier.csv +0 -126
  82. celldetective/models/signal_detection/NucCond/log_regressor.csv +0 -282
  83. celldetective/models/signal_detection/NucCond/regression_loss.png +0 -0
  84. celldetective/models/signal_detection/NucCond/regressor.h5 +0 -0
  85. celldetective/models/signal_detection/NucCond/scores.npy +0 -0
  86. celldetective/models/signal_detection/NucCond/test_confusion_matrix.png +0 -0
  87. celldetective/models/signal_detection/NucCond/test_regression.png +0 -0
  88. celldetective/models/signal_detection/NucCond/validation_confusion_matrix.png +0 -0
  89. celldetective/models/signal_detection/NucCond/validation_regression.png +0 -0
  90. celldetective-1.3.9.post5.dist-info/RECORD +0 -129
  91. tests/test_qt.py +0 -103
  92. {celldetective-1.3.9.post5.dist-info → celldetective-1.4.1.dist-info}/entry_points.txt +0 -0
  93. {celldetective-1.3.9.post5.dist-info → celldetective-1.4.1.dist-info/licenses}/LICENSE +0 -0
  94. {celldetective-1.3.9.post5.dist-info → celldetective-1.4.1.dist-info}/top_level.txt +0 -0
@@ -1,129 +0,0 @@
1
- celldetective/__init__.py,sha256=bi3SGTMo6s2qQBsJAaKy-a4xaGcTQVW8zsqaiX5XKeY,139
2
- celldetective/__main__.py,sha256=bxTlSvbKhqn3LW_azd2baDCnDsgb37PAP9DfuAJ1_5M,1844
3
- celldetective/_version.py,sha256=LI2Zi5wYb3f4Us7DLo9zDTT_AexVCZzSS1LVTRQbzKQ,28
4
- celldetective/events.py,sha256=UkjY_-THo6WviWWCLnDbma7jWOd_O9a60C4IOX2htG8,8254
5
- celldetective/extra_properties.py,sha256=N1cZZNAqhuZDxsw6EzATnze5fharxaMvzQ6IjuJfqS0,14866
6
- celldetective/filters.py,sha256=6pl2IGPK2FH8KPWbjzQEbT4C-ruqE1fQ8NQNN7Euvy8,4433
7
- celldetective/io.py,sha256=TLnYok-AiCTUVKABew7Irf-FlV2ofg-RjN7EneptjMc,122104
8
- celldetective/measure.py,sha256=h1F08Vf7sy-20syMFZTUl1lHzE4h6cQvswJpwD9fcfE,58475
9
- celldetective/neighborhood.py,sha256=s-zVsfGnPlqs6HlDJCXRh21lLiPKbA_S1JC6uZvfG_0,56712
10
- celldetective/preprocessing.py,sha256=Wlt_PJua97CpMuWe_M65znUmz_yjYPqWIcs2ZK_RLgk,44109
11
- celldetective/relative_measurements.py,sha256=-GWig0lC5UWAcJSPlo9Sp45khGj80fxuQfFk-bdBca0,30117
12
- celldetective/segmentation.py,sha256=WApzoU1s3Ntvp0eIw_pRZXNwCA8LDKC9YoyR52tioz4,30943
13
- celldetective/signals.py,sha256=nMyyGUpla8D2sUYKY1zjbWsAueVPI_gUalY0KXfWteI,111595
14
- celldetective/tracking.py,sha256=VBJLd-1EeJarOVPBNEomhVBh9UYAMdSnH0tmUiUoTrY,40242
15
- celldetective/utils.py,sha256=u9mvb4ajP4eE_usnkz9fBxkVOLrd2HfuPPE9FgAhTbc,104404
16
- celldetective/datasets/segmentation_annotations/blank,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- celldetective/datasets/signal_annotations/blank,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- celldetective/gui/InitWindow.py,sha256=TPKWYczhPHvPKWg654sXnE9xCEx6U-oWX0_OJgLTWbU,15044
19
- celldetective/gui/__init__.py,sha256=2_r2xfOj4_2xj0yBkCTIfzlF94AHKm-j6Pvpd7DddQc,989
20
- celldetective/gui/about.py,sha256=FJZrj6C-p6uqp_3UaprKosuW-Sw9_HPNQAvFbis9Gdk,1749
21
- celldetective/gui/analyze_block.py,sha256=h0sp7Tk3hZFM8w0yTidwIjZX4WRI-lQF3JCFObrLCPo,2761
22
- celldetective/gui/btrack_options.py,sha256=F2wrhuaNSaBr6vNApI22XSjdI5Cl3q138qCYBk-FDu4,44684
23
- celldetective/gui/classifier_widget.py,sha256=81B9iDVSYsCp9O1noyLVOKiEZ6YhxWX4S-O0xB9U8-c,20476
24
- celldetective/gui/configure_new_exp.py,sha256=N4SdL-4Xo0XbTAkCtt1ywr74HmHc5eaPlHGv1XgxAX0,20772
25
- celldetective/gui/control_panel.py,sha256=jFpedm03x6_jKabeadsNiigKnlh7sXCkulwe4gMCJaM,22042
26
- celldetective/gui/generic_signal_plot.py,sha256=Gv4KhA5vhbgVSj5jteE42T0aNCoQZtmIAUkEsMi6JNA,36309
27
- celldetective/gui/gui_utils.py,sha256=lF3YqMecN_xEyFN_MS0j2KWYZoCnOvMmZeMj4lTRFu4,39335
28
- celldetective/gui/json_readers.py,sha256=SkI_bR1MlAKd8NLBmQUVjJfZ7mKiU_FEjgC4dUwBACk,3698
29
- celldetective/gui/layouts.py,sha256=XsqiHR58DXsG5SSD5S8KOtUv4yw-y-s2_wZx_XsHeJs,52013
30
- celldetective/gui/measurement_options.py,sha256=sxtQPKSixVbrFcBC1XLLC4-h7ZHlgTLcPfVAW2RVV7w,40357
31
- celldetective/gui/neighborhood_options.py,sha256=FBNDvlzMPKp8s0Grxds90pCPHG1s27XrpMN0HV2gf0I,19839
32
- celldetective/gui/plot_measurements.py,sha256=n0pDUcYcsKlSMaUaBSVplGziuWp_7jKaeXdREs-MqyI,50848
33
- celldetective/gui/plot_signals_ui.py,sha256=ttm5ijtZV5wAvy8uOq45YfybvubVFHvDN1hSHC_Kkk8,18249
34
- celldetective/gui/process_block.py,sha256=rFmtrnYBohjNRqSTjxC86yDNnzcXE7w9eo9Vm0heh6A,71215
35
- celldetective/gui/retrain_segmentation_model_options.py,sha256=7iawDN4kwq56Z-dX9kQe9tLW8B3YMrIW_D85LMAAYwk,23906
36
- celldetective/gui/retrain_signal_model_options.py,sha256=GCa0WKKsgmH2CFDHAKxPGbHtCE19p1_bbcWNasyZw5o,22482
37
- celldetective/gui/seg_model_loader.py,sha256=b1BiHuAf_ZqroE4jSEVCo7ASQv-xyWMPWU799alpbNM,19727
38
- celldetective/gui/signal_annotator.py,sha256=xr3w8nLD8JeAp_7Y851OqUKGUKeF2xrpbz3mNs5HJp4,89765
39
- celldetective/gui/signal_annotator2.py,sha256=RhcMX32FH_zg8GgAofGIyda9H8euSFADau301qi1NU0,106342
40
- celldetective/gui/signal_annotator_options.py,sha256=Tq20tybpelHFUqFCSemqH9es2FqM8S3I6Fab-u0FK0A,11015
41
- celldetective/gui/styles.py,sha256=SZy_ACkA6QB_4ANyY1V0m1QF66C0SVGssOrwW1Qt1Aw,5076
42
- celldetective/gui/survival_ui.py,sha256=Q-530cAK-SsKPr8sWFTbhGekB2CFLWd0SNjtV1Wr0oo,14202
43
- celldetective/gui/tableUI.py,sha256=Yz_pHk1ERXRb0QsBPrvLEwAGpvVlawgn1b6uzz5wL_0,58022
44
- celldetective/gui/thresholds_gui.py,sha256=nxKYcEAGVdnQK0RM8pOu9MtYuBIYEvXiQCygzRjhv08,48810
45
- celldetective/gui/viewers.py,sha256=HDLB6j1FJwgKR6dQwzeHmcDvDMbDIYwD2svd-VZhJFE,47806
46
- celldetective/gui/workers.py,sha256=P4qUMXuCtGcggGmJr3VitAPSfRG30wkJ1B0pfcdGbKg,4225
47
- celldetective/gui/help/DL-segmentation-strategy.json,sha256=PZD9xXjrwbX3TiudHJPuvcyZD28o4k-fVgeTd7dBKzI,1583
48
- celldetective/gui/help/Threshold-vs-DL.json,sha256=rrFnZT2DhyS7g1nIDWeUV8-HH7M2Sv8D7sDCGBU1M_0,934
49
- celldetective/gui/help/cell-populations.json,sha256=e5yJp75rKsYkGVuO8stXxU1TznkADw71djdMUs21gd8,1200
50
- celldetective/gui/help/exp-structure.json,sha256=61zZAHms7se4Vtuma904xKMsNlWuTOIeF24cbwQiYQg,1973
51
- celldetective/gui/help/feature-btrack.json,sha256=wvKFiM38AvfQ2QsePDjTflOovqq04CWYcK2QXZhHs-A,693
52
- celldetective/gui/help/neighborhood.json,sha256=37ToEYLaV5Vodb38Jt-peknCNuvobhMVFdhAVXCthCg,1269
53
- celldetective/gui/help/prefilter-for-segmentation.json,sha256=NEL6O2nj_l8ImjMzzX6qqg7U9QV01sgZMFvkGHUiG4E,791
54
- celldetective/gui/help/preprocessing.json,sha256=M-AxW6zYB5oDiQdoc9wcky8C5p0m6uv-CJMLpUVboew,4716
55
- celldetective/gui/help/propagate-classification.json,sha256=F7Ir1mtgRVTXWLN7n3ny3vrU01LFNeDh5dN2QBIXHqE,1227
56
- celldetective/gui/help/track-postprocessing.json,sha256=VaGd8EEkA33OL-EI3NXWZ8yHeWWyUeImDF5yAjsVYGA,3990
57
- celldetective/gui/help/tracking.json,sha256=yIAoOToqCSQ_XF4gwEZCcyXcvQ3mROju263ZPDvlUyY,776
58
- celldetective/gui/processes/downloader.py,sha256=SuMTuM82QOZBqLfj36I14fhZ2k3NmLp0PBcGUHxnpXI,3287
59
- celldetective/gui/processes/measure_cells.py,sha256=7JPNkUCZ-w8v7yW-jwghH70Auk-IMOjlsnZlfr1Qjp0,12966
60
- celldetective/gui/processes/segment_cells.py,sha256=49Bh3nejkrxlLNhlP3Y_6-flkBOhkqFMQmrc2qDj7Dk,11320
61
- celldetective/gui/processes/track_cells.py,sha256=y8ohHAMcGtAjrJOP1WqvDfy_K85LbmdXoN7CA7BYpaY,9942
62
- celldetective/gui/processes/train_segmentation_model.py,sha256=bvcPG19hBjhNY9hd6Ch5_wk2FOJYQg97Azoz4RKeP-0,10776
63
- celldetective/gui/processes/train_signal_model.py,sha256=qqqkq9gdvNyvycYkmzWgRXWvsbEozyzNWP_POGvnlIs,3816
64
- celldetective/icons/logo-large.png,sha256=FXSwV3u6zEKcfpuSn4unnqB0oUnN9cHqQ9BCKWytrpg,36631
65
- celldetective/icons/logo.png,sha256=wV2OS8_dU5Td5cgdPbCOU3JpMpTwNuYLnfVcnQX0tJA,2437
66
- celldetective/icons/signals_icon.png,sha256=vEiKoqWTtN0-uJgVqtAlwCuP-f4QeWYOlO3sdp2tg2w,3969
67
- celldetective/icons/splash-test.png,sha256=W9smcuuwJUF9DU-rz4aACx7_rCmGRsxYUGPBDlDnrJk,17523
68
- celldetective/icons/splash.png,sha256=J_1jPJylxwHGzGF1xCGocc-BmylHtHTII9VJSLKnezY,17895
69
- celldetective/icons/splash0.png,sha256=qVXsrYUinm5g6-vbHcqwyjh8SIqs9lEqPWnPa1WijaQ,14233
70
- celldetective/icons/survival2.png,sha256=8zsualD7d9VPAecoFA4Om9TFARErqpJzMg6U7XANXf4,4479
71
- celldetective/icons/vignette_signals2.png,sha256=hsVOdQDpEfMGM45aaSeacEm3lvxbquRKKYutiS9qoS0,20743
72
- celldetective/icons/vignette_signals2.svg,sha256=muGNcQudV1jG-bmFd9FwV-Wb8PcrRV5osdZ7pHR7Ekk,5947
73
- celldetective/links/zenodo.json,sha256=Y1C0KFQ5K9rx8jXMLVbisU5Obg3389KK4MIpid3uWX8,34441
74
- celldetective/models/pair_signal_detection/blank,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
- celldetective/models/segmentation_effectors/blank,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
- celldetective/models/segmentation_effectors/ricm_bf_all_last/config_input.json,sha256=Sr5AiyJkg_EoAUFSZbUH_FE-jQHTwNR3tiUZdmvPlaA,7068
77
- celldetective/models/segmentation_effectors/ricm_bf_all_last/ricm_bf_all_last,sha256=HTgeUImhkhjf-HsoziJPL16azPIGt2XiMmgvB_qf7DA,26559970
78
- celldetective/models/segmentation_effectors/ricm_bf_all_last/training_instructions.json,sha256=4ZcZVti1kA_1zV8_3jj2pZYBST0kX8Z00tlc4AATlxo,847
79
- celldetective/models/segmentation_effectors/test-transfer/config_input.json,sha256=JytjANaerSQBjMn-cZktHj8ESdMCIvXWdmwmgQGgUYE,1212
80
- celldetective/models/segmentation_effectors/test-transfer/test-transfer,sha256=eEy7bx3jJcj0MmV893OMbzSF_jagCz4Ov7CGkXGWmqI,26554673
81
- celldetective/models/segmentation_generic/blank,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
- celldetective/models/segmentation_targets/blank,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
- celldetective/models/signal_detection/blank,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
- celldetective/models/signal_detection/NucCond/classification_loss.png,sha256=iiZUE9cNm8MaeIHEKKxTeNSZAZi5_UgRD5GzmAPYfWk,15127
85
- celldetective/models/signal_detection/NucCond/classifier.h5,sha256=edsY5wxTUtHICrNAIyLZYgMUfoZJLTU4W5U_lNASznk,8536576
86
- celldetective/models/signal_detection/NucCond/config_input.json,sha256=6OSt4t5cq0VKsxglJF6KbcSlFsTatLd6J2RPDnkGxho,197
87
- celldetective/models/signal_detection/NucCond/log_classifier.csv,sha256=d1gX2DkQPc8qFJIFFZvFPkpQuAEPQHD_3IbcgU0cruI,24955
88
- celldetective/models/signal_detection/NucCond/log_regressor.csv,sha256=_Q5vt6V9Z_vZEmgM3pXgPBKUQlClNIRHDRt7iWry6dY,39505
89
- celldetective/models/signal_detection/NucCond/regression_loss.png,sha256=iiZUE9cNm8MaeIHEKKxTeNSZAZi5_UgRD5GzmAPYfWk,15127
90
- celldetective/models/signal_detection/NucCond/regressor.h5,sha256=cwbrYA83hiPFPa4kX5dLbD3CR0iZR_5tqF12wgy_nwM,8524608
91
- celldetective/models/signal_detection/NucCond/scores.npy,sha256=i5pB9u-WlALazRlvC4JKraSBPpcHYmgPy-3RmxDFXIs,17018045
92
- celldetective/models/signal_detection/NucCond/test_confusion_matrix.png,sha256=8AxrYmmIxvEWiYXseYuSIxfCFenXvF48jmaVDEhJPWc,89815
93
- celldetective/models/signal_detection/NucCond/test_regression.png,sha256=yotitWM4xfbVSE_heem0jY6LgkMo81GtlzeuGm3foKc,80188
94
- celldetective/models/signal_detection/NucCond/validation_confusion_matrix.png,sha256=fElTDMs8FmcJUs0zwReZ35sd8PLvabJbpcV_82ajapk,85586
95
- celldetective/models/signal_detection/NucCond/validation_regression.png,sha256=_27_LeFoCNvdv-1j4eLADuSyCYeJL8ncWAQbitc5s84,60411
96
- celldetective/models/tracking_configs/biased_motion.json,sha256=RZa-ZCP4jbFtMVz-M4lf1LtqmAvBrUxIhhudNiU1jtY,1782
97
- celldetective/models/tracking_configs/mcf7.json,sha256=iDjb8i6yxs0GleW39dvY3Ld5bZJatlXJrwI8PG3vCT0,1780
98
- celldetective/models/tracking_configs/no_z_motion.json,sha256=b4RWOJ0w6Y2e0vJYwKMyOexedeL2eA8fEDbSzbNmB4A,2702
99
- celldetective/models/tracking_configs/ricm.json,sha256=L-vmwCR1f89U-qnH2Ms0cBfPFR_dxIWoe2ccH8V-QBA,2727
100
- celldetective/models/tracking_configs/ricm2.json,sha256=DDjJ6ScYcDWvlsy7ujPID8v8H28vcNcMuZmNR8XmGxo,2718
101
- celldetective/regionprops/__init__.py,sha256=ohe9vC7j4lnpKnGXidVo1PVfoQfC8TqCuHTNo8rXmdg,44
102
- celldetective/regionprops/_regionprops.py,sha256=a68bAytxgy-WFUzrjWg-xViSE27ehN9PdKfyO-dxKxM,10275
103
- celldetective/regionprops/props.json,sha256=sCwACmbh0n-JAw9eve9yV85REukoMBJLsRjxCwTRMm8,2424
104
- celldetective/scripts/analyze_signals.py,sha256=YE05wZujl2hQFWkvqATBcCx-cAd_V3RxnvKoh0SB7To,2194
105
- celldetective/scripts/measure_cells.py,sha256=edZ9xlUsLg1TI_yudp7bd04B_oqdHk9Ee4mSDe8G86w,11769
106
- celldetective/scripts/measure_relative.py,sha256=wI7ibgWCsh5NVfcYum9LK0khL7cwKyCxwHFaXG4oWjM,3698
107
- celldetective/scripts/segment_cells.py,sha256=AZfHqig0WBMkAh9ho7JHmjM9vMO-EiPVviTHJcDj5Mw,6954
108
- celldetective/scripts/segment_cells_thresholds.py,sha256=J_QW53ndopSeq-uelBa2oTUCC2wG_FFCahEnn7PYpUE,5121
109
- celldetective/scripts/track_cells.py,sha256=3I83-rkaShSzBSvYH0OVzjcgHeIohCxumA5W-lHg5Rw,8798
110
- celldetective/scripts/train_segmentation_model.py,sha256=XExaGg8kkdirgN206J0mwiWtqeRE076-Ld2b89tReAI,9229
111
- celldetective/scripts/train_signal_model.py,sha256=D643wKVYg-LWHF2VU9FWKSuazXrpCpQK0YjGqoIimD0,3167
112
- tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
- tests/test_events.py,sha256=eLFwwEEJfQAdwhews3-fn1HSvzozcNNFN_Qn0gOvQkE,685
114
- tests/test_filters.py,sha256=iJksl_HgquqGzPPv46qpNtlD4rkBpZ5eVtIotgZ7LDs,656
115
- tests/test_io.py,sha256=gk5FmoI7ANEczUtNXYRxc48KzkfYzemwS_eYaLq4_NI,2093
116
- tests/test_measure.py,sha256=FEUAs1rVHylvIvubCb0bJDNGZLVmkgXNgI3NaGQ1dA8,4542
117
- tests/test_neighborhood.py,sha256=gk5FmoI7ANEczUtNXYRxc48KzkfYzemwS_eYaLq4_NI,2093
118
- tests/test_preprocessing.py,sha256=FI-Wk-kc4wWmOQg_NLCUIZC1oti396wr5cC-BauBai0,1436
119
- tests/test_qt.py,sha256=Mx8qxUofHyMo2NnPOKQq108sJ-7skVFGWAA_VMyehMw,4042
120
- tests/test_segmentation.py,sha256=k1b_zIZdlytEdJcHjAUQEO3gTBAHtv5WvrwQN2xD4kc,3470
121
- tests/test_signals.py,sha256=No4cah6KxplhDcKXnU8RrA7eDla4hWw6ccf7xGnBokU,3599
122
- tests/test_tracking.py,sha256=8hebWSqEIuttD1ABn-6dKCT7EXKRR7-4RwyFWi1WPFo,8800
123
- tests/test_utils.py,sha256=NKRCAC1d89aBK5cWjTb7-pInYow901RrT-uBlIdz4KI,3692
124
- celldetective-1.3.9.post5.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
125
- celldetective-1.3.9.post5.dist-info/METADATA,sha256=jn77YGkfor9ud4o0cvkEtDDwsKj4LnrMy6EDQj6aVWs,10753
126
- celldetective-1.3.9.post5.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
127
- celldetective-1.3.9.post5.dist-info/entry_points.txt,sha256=2NU6_EOByvPxqBbCvjwxlVlvnQreqZ3BKRCVIKEv3dg,62
128
- celldetective-1.3.9.post5.dist-info/top_level.txt,sha256=6rsIKKfGMKgud7HPuATcpq6EhdXwcg_yknBVWn9x4C4,20
129
- celldetective-1.3.9.post5.dist-info/RECORD,,
tests/test_qt.py DELETED
@@ -1,103 +0,0 @@
1
- import pytest
2
- from PyQt5 import QtCore
3
- from celldetective.gui.InitWindow import AppInitWindow
4
- from celldetective.utils import get_software_location
5
- import time
6
- import os
7
-
8
- abs_path = os.sep.join([os.path.split(os.path.dirname(os.path.realpath(__file__)))[0]])
9
- print(abs_path)
10
-
11
- @pytest.fixture
12
- def app(qtbot):
13
- software_location = get_software_location()
14
- test_app = AppInitWindow(software_location=software_location)
15
- qtbot.addWidget(test_app)
16
- return test_app
17
-
18
- # def test_launch_demo(app, qtbot):
19
- # app.experiment_path_selection.setText(abs_path + os.sep + 'examples/demo')
20
- # qtbot.mouseClick(app.validate_button, QtCore.Qt.LeftButton)
21
-
22
- # def test_preprocessing_panel(app, qtbot):
23
-
24
- # app.experiment_path_selection.setText(abs_path + os.sep + 'examples/demo')
25
- # qtbot.mouseClick(app.validate_button, QtCore.Qt.LeftButton)
26
-
27
- # qtbot.mouseClick(app.control_panel.PreprocessingPanel.collapse_btn, QtCore.Qt.LeftButton)
28
- # qtbot.mouseClick(app.control_panel.PreprocessingPanel.fit_correction_layout.add_correction_btn, QtCore.Qt.LeftButton)
29
- # qtbot.mouseClick(app.control_panel.PreprocessingPanel.collapse_btn, QtCore.Qt.LeftButton)
30
-
31
- def test_app(app, qtbot):
32
-
33
- # Set an experiment folder and open
34
- app.experiment_path_selection.setText(os.sep.join([abs_path,'examples','demo']))
35
- qtbot.mouseClick(app.validate_button, QtCore.Qt.LeftButton)
36
-
37
- # Set a position
38
- #app.control_panel.position_list.setCurrentIndex(0)
39
- #app.control_panel.update_position_options()
40
-
41
- # View stacl
42
- qtbot.mouseClick(app.control_panel.view_stack_btn, QtCore.Qt.LeftButton)
43
- #qtbot.wait(1000)
44
- app.control_panel.viewer.close()
45
-
46
- # Expand process block
47
- qtbot.mouseClick(app.control_panel.ProcessEffectors.collapse_btn, QtCore.Qt.LeftButton)
48
-
49
- # Use Threshold Config Wizard
50
- qtbot.mouseClick(app.control_panel.ProcessEffectors.upload_model_btn, QtCore.Qt.LeftButton)
51
- qtbot.wait(1000)
52
- qtbot.mouseClick(app.control_panel.ProcessEffectors.SegModelLoader.threshold_config_button, QtCore.Qt.LeftButton)
53
- app.control_panel.ProcessEffectors.SegModelLoader.ThreshWizard.close()
54
- app.control_panel.ProcessEffectors.SegModelLoader.close()
55
-
56
- # Check segmentation with napari
57
- #qtbot.mouseClick(app.control_panel.ProcessEffectors.check_seg_btn, QtCore.Qt.LeftButton)
58
- # close napari?
59
-
60
- # Train model
61
- qtbot.mouseClick(app.control_panel.ProcessEffectors.train_btn, QtCore.Qt.LeftButton)
62
- qtbot.wait(1000)
63
- app.control_panel.ProcessEffectors.ConfigSegmentationTrain.close()
64
-
65
- # Config tracking
66
- qtbot.mouseClick(app.control_panel.ProcessEffectors.track_config_btn, QtCore.Qt.LeftButton)
67
- qtbot.wait(1000)
68
- app.control_panel.ProcessEffectors.ConfigTracking.close()
69
-
70
- # Config measurements
71
- qtbot.mouseClick(app.control_panel.ProcessEffectors.measurements_config_btn, QtCore.Qt.LeftButton)
72
- qtbot.wait(1000)
73
- app.control_panel.ProcessEffectors.ConfigMeasurements.close()
74
-
75
- # Classifier widget
76
- qtbot.mouseClick(app.control_panel.ProcessEffectors.classify_btn, QtCore.Qt.LeftButton)
77
- qtbot.wait(1000)
78
- app.control_panel.ProcessEffectors.ClassifierWidget.close()
79
-
80
- # Config signal annotator
81
- qtbot.mouseClick(app.control_panel.ProcessEffectors.config_signal_annotator_btn, QtCore.Qt.LeftButton)
82
- qtbot.mouseClick(app.control_panel.ProcessEffectors.ConfigSignalAnnotator.rgb_btn, QtCore.Qt.LeftButton)
83
- qtbot.wait(1000)
84
- app.control_panel.ProcessEffectors.ConfigSignalAnnotator.close()
85
-
86
- # Signal annotator widget
87
- qtbot.mouseClick(app.control_panel.ProcessEffectors.check_signals_btn, QtCore.Qt.LeftButton)
88
- qtbot.wait(1000)
89
- app.control_panel.ProcessEffectors.SignalAnnotator.close()
90
-
91
- # Table widget
92
- qtbot.mouseClick(app.control_panel.ProcessEffectors.view_tab_btn, QtCore.Qt.LeftButton)
93
- qtbot.wait(1000)
94
- app.control_panel.ProcessEffectors.tab_ui.close()
95
-
96
- #qtbot.mouseClick(app.control_panel.PreprocessingPanel.fit_correction_layout.add_correction_btn, QtCore.Qt.LeftButton)
97
- qtbot.mouseClick(app.control_panel.ProcessEffectors.collapse_btn, QtCore.Qt.LeftButton)
98
-
99
-
100
-
101
- # def test_click(app, qtbot):
102
- # qtbot.mouseClick(app.new_exp_button, QtCore.Qt.LeftButton)
103
- # qtbot.wait(10000)