dcscope 2.22.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 (267) hide show
  1. dcscope/__init__.py +17 -0
  2. dcscope/__main__.py +44 -0
  3. dcscope/_version.py +21 -0
  4. dcscope/extensions.py +250 -0
  5. dcscope/gui/__init__.py +2 -0
  6. dcscope/gui/analysis/__init__.py +10 -0
  7. dcscope/gui/analysis/ana_basins.py +110 -0
  8. dcscope/gui/analysis/ana_basins.ui +143 -0
  9. dcscope/gui/analysis/ana_filter.py +341 -0
  10. dcscope/gui/analysis/ana_filter.ui +364 -0
  11. dcscope/gui/analysis/ana_log.py +122 -0
  12. dcscope/gui/analysis/ana_log.ui +100 -0
  13. dcscope/gui/analysis/ana_meta.py +207 -0
  14. dcscope/gui/analysis/ana_meta.ui +141 -0
  15. dcscope/gui/analysis/ana_plot.py +638 -0
  16. dcscope/gui/analysis/ana_plot.ui +1060 -0
  17. dcscope/gui/analysis/ana_slot.py +504 -0
  18. dcscope/gui/analysis/ana_slot.ui +684 -0
  19. dcscope/gui/analysis/ana_tables.py +227 -0
  20. dcscope/gui/analysis/ana_tables.ui +195 -0
  21. dcscope/gui/analysis/ana_view.py +69 -0
  22. dcscope/gui/analysis/ana_view.ui +269 -0
  23. dcscope/gui/analysis/dlg_slot_reorder.py +55 -0
  24. dcscope/gui/analysis/dlg_slot_reorder.ui +138 -0
  25. dcscope/gui/bulk/__init__.py +2 -0
  26. dcscope/gui/bulk/bulk_emodulus.py +200 -0
  27. dcscope/gui/bulk/bulk_emodulus.ui +245 -0
  28. dcscope/gui/compute/__init__.py +3 -0
  29. dcscope/gui/compute/comp_lme4.py +115 -0
  30. dcscope/gui/compute/comp_lme4.ui +194 -0
  31. dcscope/gui/compute/comp_lme4_dataset.py +51 -0
  32. dcscope/gui/compute/comp_lme4_dataset.ui +92 -0
  33. dcscope/gui/compute/comp_lme4_results.py +120 -0
  34. dcscope/gui/compute/comp_lme4_results.ui +268 -0
  35. dcscope/gui/compute/comp_stats.py +223 -0
  36. dcscope/gui/compute/comp_stats.ui +187 -0
  37. dcscope/gui/dcor/__init__.py +304 -0
  38. dcscope/gui/dcor/dcor.ui +118 -0
  39. dcscope/gui/export/__init__.py +3 -0
  40. dcscope/gui/export/e2data.py +394 -0
  41. dcscope/gui/export/e2data.ui +367 -0
  42. dcscope/gui/export/e2filter.py +76 -0
  43. dcscope/gui/export/e2filter.ui +111 -0
  44. dcscope/gui/export/e2plot.py +94 -0
  45. dcscope/gui/export/e2plot.ui +175 -0
  46. dcscope/gui/main.py +1089 -0
  47. dcscope/gui/main.ui +579 -0
  48. dcscope/gui/matrix/__init__.py +4 -0
  49. dcscope/gui/matrix/block_matrix.py +141 -0
  50. dcscope/gui/matrix/block_matrix.ui +207 -0
  51. dcscope/gui/matrix/data_matrix.py +574 -0
  52. dcscope/gui/matrix/dm_dataset.py +116 -0
  53. dcscope/gui/matrix/dm_dataset.ui +348 -0
  54. dcscope/gui/matrix/dm_element.py +111 -0
  55. dcscope/gui/matrix/dm_element.ui +169 -0
  56. dcscope/gui/matrix/dm_filter.py +115 -0
  57. dcscope/gui/matrix/dm_filter.ui +287 -0
  58. dcscope/gui/matrix/plot_matrix.py +316 -0
  59. dcscope/gui/matrix/pm_element.py +39 -0
  60. dcscope/gui/matrix/pm_plot.py +86 -0
  61. dcscope/gui/matrix/pm_plot.ui +249 -0
  62. dcscope/gui/pipeline_plot.py +797 -0
  63. dcscope/gui/pipeline_plot.ui +66 -0
  64. dcscope/gui/preferences.py +380 -0
  65. dcscope/gui/preferences.ui +554 -0
  66. dcscope/gui/quick_view/__init__.py +1 -0
  67. dcscope/gui/quick_view/qv_main.py +1072 -0
  68. dcscope/gui/quick_view/qv_main.ui +1297 -0
  69. dcscope/gui/quick_view/qv_scatter.py +284 -0
  70. dcscope/gui/quick_view/qv_style.css +10 -0
  71. dcscope/gui/update.py +90 -0
  72. dcscope/gui/widgets/__init__.py +15 -0
  73. dcscope/gui/widgets/bg_thread.py +29 -0
  74. dcscope/gui/widgets/bulk_list.py +79 -0
  75. dcscope/gui/widgets/bulk_list.ui +95 -0
  76. dcscope/gui/widgets/double_spin_box_nan.py +75 -0
  77. dcscope/gui/widgets/feature_combobox.py +140 -0
  78. dcscope/gui/widgets/get_path.py +42 -0
  79. dcscope/gui/widgets/key_value_table_widget.css +12 -0
  80. dcscope/gui/widgets/key_value_table_widget.py +75 -0
  81. dcscope/gui/widgets/mdi_subwindow_wo_close.py +12 -0
  82. dcscope/gui/widgets/qrangeslider.py +262 -0
  83. dcscope/gui/widgets/rangecontrol.py +308 -0
  84. dcscope/gui/widgets/rangecontrol.ui +136 -0
  85. dcscope/gui/widgets/simple_image_view.py +55 -0
  86. dcscope/gui/widgets/simple_plot_widget.py +113 -0
  87. dcscope/gui/widgets/so_colorbaritem.py +29 -0
  88. dcscope/gui/widgets/wait_cursor.py +33 -0
  89. dcscope/idiom.py +26 -0
  90. dcscope/img/__init__.py +2 -0
  91. dcscope/img/icon-theme/breeze/COPYING-ICONS +209 -0
  92. dcscope/img/icon-theme/breeze/COPYING.LIB +510 -0
  93. dcscope/img/icon-theme/breeze/README +5 -0
  94. dcscope/img/icon-theme/breeze/actions/16/application-exit.svg +17 -0
  95. dcscope/img/icon-theme/breeze/actions/16/code-context.svg +13 -0
  96. dcscope/img/icon-theme/breeze/actions/16/dialog-cancel.svg +13 -0
  97. dcscope/img/icon-theme/breeze/actions/16/dialog-close.svg +17 -0
  98. dcscope/img/icon-theme/breeze/actions/16/dialog-messages.svg +13 -0
  99. dcscope/img/icon-theme/breeze/actions/16/dialog-ok-apply.svg +13 -0
  100. dcscope/img/icon-theme/breeze/actions/16/dialog-ok.svg +13 -0
  101. dcscope/img/icon-theme/breeze/actions/16/document-open-folder.svg +13 -0
  102. dcscope/img/icon-theme/breeze/actions/16/document-open.svg +13 -0
  103. dcscope/img/icon-theme/breeze/actions/16/document-save.svg +13 -0
  104. dcscope/img/icon-theme/breeze/actions/16/documentinfo.svg +12 -0
  105. dcscope/img/icon-theme/breeze/actions/16/draw-watercolor.svg +13 -0
  106. dcscope/img/icon-theme/breeze/actions/16/edit-clear-all.svg +13 -0
  107. dcscope/img/icon-theme/breeze/actions/16/edit-clear.svg +13 -0
  108. dcscope/img/icon-theme/breeze/actions/16/edit-paste.svg +13 -0
  109. dcscope/img/icon-theme/breeze/actions/16/globe.svg +16 -0
  110. dcscope/img/icon-theme/breeze/actions/16/gtk-preferences.svg +13 -0
  111. dcscope/img/icon-theme/breeze/actions/16/list-add.svg +13 -0
  112. dcscope/img/icon-theme/breeze/actions/16/messagebox_warning.svg +20 -0
  113. dcscope/img/icon-theme/breeze/actions/16/object-columns.svg +13 -0
  114. dcscope/img/icon-theme/breeze/actions/16/object-order-lower.svg +13 -0
  115. dcscope/img/icon-theme/breeze/actions/16/object-rows.svg +13 -0
  116. dcscope/img/icon-theme/breeze/actions/16/office-chart-line-stacked.svg +13 -0
  117. dcscope/img/icon-theme/breeze/actions/16/office-chart-ring.svg +13 -0
  118. dcscope/img/icon-theme/breeze/actions/16/office-chart-scatter.svg +13 -0
  119. dcscope/img/icon-theme/breeze/actions/16/path-mode-polyline.svg +13 -0
  120. dcscope/img/icon-theme/breeze/actions/16/preferences-activities.svg +13 -0
  121. dcscope/img/icon-theme/breeze/actions/16/remove.svg +10 -0
  122. dcscope/img/icon-theme/breeze/actions/16/search.svg +13 -0
  123. dcscope/img/icon-theme/breeze/actions/16/show-grid.svg +13 -0
  124. dcscope/img/icon-theme/breeze/actions/16/special_paste.svg +13 -0
  125. dcscope/img/icon-theme/breeze/actions/16/tools-wizard.svg +13 -0
  126. dcscope/img/icon-theme/breeze/actions/16/view-calendar-list.svg +13 -0
  127. dcscope/img/icon-theme/breeze/actions/16/view-filter.svg +13 -0
  128. dcscope/img/icon-theme/breeze/actions/16/view-list-tree.svg +13 -0
  129. dcscope/img/icon-theme/breeze/actions/16/view-statistics.svg +13 -0
  130. dcscope/img/icon-theme/breeze/actions/16/visibility.svg +21 -0
  131. dcscope/img/icon-theme/breeze/actions/22/application-exit.svg +13 -0
  132. dcscope/img/icon-theme/breeze/actions/22/code-context.svg +14 -0
  133. dcscope/img/icon-theme/breeze/actions/22/dialog-cancel.svg +14 -0
  134. dcscope/img/icon-theme/breeze/actions/22/dialog-close.svg +10 -0
  135. dcscope/img/icon-theme/breeze/actions/22/dialog-messages.svg +14 -0
  136. dcscope/img/icon-theme/breeze/actions/22/dialog-ok-apply.svg +14 -0
  137. dcscope/img/icon-theme/breeze/actions/22/dialog-ok.svg +14 -0
  138. dcscope/img/icon-theme/breeze/actions/22/document-open-folder.svg +14 -0
  139. dcscope/img/icon-theme/breeze/actions/22/document-open.svg +14 -0
  140. dcscope/img/icon-theme/breeze/actions/22/document-save.svg +14 -0
  141. dcscope/img/icon-theme/breeze/actions/22/documentinfo.svg +14 -0
  142. dcscope/img/icon-theme/breeze/actions/22/draw-watercolor.svg +14 -0
  143. dcscope/img/icon-theme/breeze/actions/22/edit-clear-all.svg +14 -0
  144. dcscope/img/icon-theme/breeze/actions/22/edit-clear.svg +14 -0
  145. dcscope/img/icon-theme/breeze/actions/22/edit-paste.svg +14 -0
  146. dcscope/img/icon-theme/breeze/actions/22/globe.svg +12 -0
  147. dcscope/img/icon-theme/breeze/actions/22/gtk-preferences.svg +13 -0
  148. dcscope/img/icon-theme/breeze/actions/22/list-add.svg +14 -0
  149. dcscope/img/icon-theme/breeze/actions/22/messagebox_warning.svg +17 -0
  150. dcscope/img/icon-theme/breeze/actions/22/object-columns.svg +14 -0
  151. dcscope/img/icon-theme/breeze/actions/22/object-order-lower.svg +17 -0
  152. dcscope/img/icon-theme/breeze/actions/22/object-rows.svg +17 -0
  153. dcscope/img/icon-theme/breeze/actions/22/office-chart-line-stacked.svg +17 -0
  154. dcscope/img/icon-theme/breeze/actions/22/office-chart-ring.svg +17 -0
  155. dcscope/img/icon-theme/breeze/actions/22/office-chart-scatter.svg +17 -0
  156. dcscope/img/icon-theme/breeze/actions/22/path-mode-polyline.svg +17 -0
  157. dcscope/img/icon-theme/breeze/actions/22/preferences-activities.svg +14 -0
  158. dcscope/img/icon-theme/breeze/actions/22/remove.svg +10 -0
  159. dcscope/img/icon-theme/breeze/actions/22/special_paste.svg +14 -0
  160. dcscope/img/icon-theme/breeze/actions/22/tools-wizard.svg +14 -0
  161. dcscope/img/icon-theme/breeze/actions/22/view-calendar-list.svg +14 -0
  162. dcscope/img/icon-theme/breeze/actions/22/view-filter.svg +14 -0
  163. dcscope/img/icon-theme/breeze/actions/22/view-list-tree.svg +14 -0
  164. dcscope/img/icon-theme/breeze/actions/22/view-statistics.svg +14 -0
  165. dcscope/img/icon-theme/breeze/actions/22/visibility.svg +14 -0
  166. dcscope/img/icon-theme/breeze/actions/24/application-exit.svg +12 -0
  167. dcscope/img/icon-theme/breeze/actions/24/code-context.svg +12 -0
  168. dcscope/img/icon-theme/breeze/actions/24/dialog-cancel.svg +12 -0
  169. dcscope/img/icon-theme/breeze/actions/24/dialog-close.svg +10 -0
  170. dcscope/img/icon-theme/breeze/actions/24/dialog-messages.svg +12 -0
  171. dcscope/img/icon-theme/breeze/actions/24/dialog-ok-apply.svg +12 -0
  172. dcscope/img/icon-theme/breeze/actions/24/dialog-ok.svg +14 -0
  173. dcscope/img/icon-theme/breeze/actions/24/document-open-folder.svg +12 -0
  174. dcscope/img/icon-theme/breeze/actions/24/document-open.svg +12 -0
  175. dcscope/img/icon-theme/breeze/actions/24/document-save.svg +12 -0
  176. dcscope/img/icon-theme/breeze/actions/24/documentinfo.svg +14 -0
  177. dcscope/img/icon-theme/breeze/actions/24/draw-watercolor.svg +12 -0
  178. dcscope/img/icon-theme/breeze/actions/24/edit-clear-all.svg +14 -0
  179. dcscope/img/icon-theme/breeze/actions/24/edit-clear.svg +12 -0
  180. dcscope/img/icon-theme/breeze/actions/24/edit-paste.svg +12 -0
  181. dcscope/img/icon-theme/breeze/actions/24/globe.svg +14 -0
  182. dcscope/img/icon-theme/breeze/actions/24/gtk-preferences.svg +13 -0
  183. dcscope/img/icon-theme/breeze/actions/24/list-add.svg +12 -0
  184. dcscope/img/icon-theme/breeze/actions/24/messagebox_warning.svg +13 -0
  185. dcscope/img/icon-theme/breeze/actions/24/object-columns.svg +12 -0
  186. dcscope/img/icon-theme/breeze/actions/24/object-order-lower.svg +15 -0
  187. dcscope/img/icon-theme/breeze/actions/24/object-rows.svg +15 -0
  188. dcscope/img/icon-theme/breeze/actions/24/office-chart-line-stacked.svg +15 -0
  189. dcscope/img/icon-theme/breeze/actions/24/office-chart-ring.svg +15 -0
  190. dcscope/img/icon-theme/breeze/actions/24/office-chart-scatter.svg +15 -0
  191. dcscope/img/icon-theme/breeze/actions/24/path-mode-polyline.svg +15 -0
  192. dcscope/img/icon-theme/breeze/actions/24/preferences-activities.svg +13 -0
  193. dcscope/img/icon-theme/breeze/actions/24/remove.svg +10 -0
  194. dcscope/img/icon-theme/breeze/actions/24/special_paste.svg +12 -0
  195. dcscope/img/icon-theme/breeze/actions/24/tools-wizard.svg +12 -0
  196. dcscope/img/icon-theme/breeze/actions/24/view-calendar-list.svg +12 -0
  197. dcscope/img/icon-theme/breeze/actions/24/view-filter.svg +12 -0
  198. dcscope/img/icon-theme/breeze/actions/24/view-list-tree.svg +12 -0
  199. dcscope/img/icon-theme/breeze/actions/24/view-statistics.svg +12 -0
  200. dcscope/img/icon-theme/breeze/actions/24/visibility.svg +14 -0
  201. dcscope/img/icon-theme/breeze/actions/32/application-exit.svg +8 -0
  202. dcscope/img/icon-theme/breeze/actions/32/dialog-cancel.svg +13 -0
  203. dcscope/img/icon-theme/breeze/actions/32/dialog-messages.svg +13 -0
  204. dcscope/img/icon-theme/breeze/actions/32/dialog-ok-apply.svg +1 -0
  205. dcscope/img/icon-theme/breeze/actions/32/dialog-ok.svg +1 -0
  206. dcscope/img/icon-theme/breeze/actions/32/document-open-folder.svg +13 -0
  207. dcscope/img/icon-theme/breeze/actions/32/document-open.svg +13 -0
  208. dcscope/img/icon-theme/breeze/actions/32/document-save.svg +18 -0
  209. dcscope/img/icon-theme/breeze/actions/32/gtk-preferences.svg +17 -0
  210. dcscope/img/icon-theme/breeze/actions/32/object-order-lower.svg +18 -0
  211. dcscope/img/icon-theme/breeze/actions/32/view-filter.svg +18 -0
  212. dcscope/img/icon-theme/breeze/actions/32/view-list-tree.svg +18 -0
  213. dcscope/img/icon-theme/breeze/places/16/folder-cloud.svg +13 -0
  214. dcscope/img/icon-theme/breeze/places/16/folder.svg +13 -0
  215. dcscope/img/icon-theme/breeze/places/22/folder-cloud.svg +13 -0
  216. dcscope/img/icon-theme/breeze/places/22/folder.svg +13 -0
  217. dcscope/img/icon-theme/breeze/places/24/folder-cloud.svg +12 -0
  218. dcscope/img/icon-theme/breeze/places/24/folder.svg +12 -0
  219. dcscope/img/icon-theme/breeze/places/32/folder-cloud.svg +35 -0
  220. dcscope/img/icon-theme/breeze/places/32/folder.svg +30 -0
  221. dcscope/img/icon-theme/breeze/places/64/folder-cloud.svg +35 -0
  222. dcscope/img/icon-theme/breeze/places/64/folder.svg +30 -0
  223. dcscope/img/icon-theme/breeze/status/16/dialog-error.svg +9 -0
  224. dcscope/img/icon-theme/breeze/status/16/dialog-information.svg +9 -0
  225. dcscope/img/icon-theme/breeze/status/16/dialog-question.svg +7 -0
  226. dcscope/img/icon-theme/breeze/status/16/dialog-warning.svg +9 -0
  227. dcscope/img/icon-theme/breeze/status/22/dialog-error.svg +9 -0
  228. dcscope/img/icon-theme/breeze/status/22/dialog-information.svg +9 -0
  229. dcscope/img/icon-theme/breeze/status/22/dialog-question.svg +7 -0
  230. dcscope/img/icon-theme/breeze/status/22/dialog-warning.svg +9 -0
  231. dcscope/img/icon-theme/breeze/status/24/dialog-error.svg +13 -0
  232. dcscope/img/icon-theme/breeze/status/24/dialog-information.svg +13 -0
  233. dcscope/img/icon-theme/breeze/status/24/dialog-question.svg +9 -0
  234. dcscope/img/icon-theme/breeze/status/24/dialog-warning.svg +1 -0
  235. dcscope/img/icon-theme/breeze/status/64/dialog-error.svg +25 -0
  236. dcscope/img/icon-theme/breeze/status/64/dialog-information.svg +25 -0
  237. dcscope/img/icon-theme/breeze/status/64/dialog-question.svg +25 -0
  238. dcscope/img/icon-theme/breeze/status/64/dialog-warning.svg +25 -0
  239. dcscope/img/icon-theme/collect_icons.py +124 -0
  240. dcscope/img/icon-theme/dcscope/dcor.png +0 -0
  241. dcscope/img/icon-theme/dcscope/edit-copy-anew.svg +13 -0
  242. dcscope/img/icon-theme/dcscope/emodulus.svg +69 -0
  243. dcscope/img/icon-theme/dcscope/filter_ray.svg +54 -0
  244. dcscope/img/icon-theme/dcscope/region_channel.svg +86 -0
  245. dcscope/img/icon-theme/dcscope/region_reservoir.svg +89 -0
  246. dcscope/img/icon-theme/dcscope/rlang.svg +108 -0
  247. dcscope/img/icon-theme/dcscope/statistical_significance.svg +106 -0
  248. dcscope/img/icon-theme/index.theme +81 -0
  249. dcscope/img/icon.png +0 -0
  250. dcscope/img/icon.svg +73 -0
  251. dcscope/img/splash.png +0 -0
  252. dcscope/meta_tool.py +143 -0
  253. dcscope/pipeline/__init__.py +5 -0
  254. dcscope/pipeline/core.py +632 -0
  255. dcscope/pipeline/dataslot.py +270 -0
  256. dcscope/pipeline/filter.py +161 -0
  257. dcscope/pipeline/filter_ray.py +170 -0
  258. dcscope/pipeline/plot.py +187 -0
  259. dcscope/plot_cache.py +79 -0
  260. dcscope/session.py +379 -0
  261. dcscope/util.py +34 -0
  262. dcscope-2.22.1.dist-info/METADATA +95 -0
  263. dcscope-2.22.1.dist-info/RECORD +267 -0
  264. dcscope-2.22.1.dist-info/WHEEL +5 -0
  265. dcscope-2.22.1.dist-info/entry_points.txt +2 -0
  266. dcscope-2.22.1.dist-info/licenses/LICENSE +621 -0
  267. dcscope-2.22.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,95 @@
1
+ Metadata-Version: 2.4
2
+ Name: dcscope
3
+ Version: 2.22.1
4
+ Summary: User interface for deformability cytometry (DC)
5
+ Author: Benedikt Hartmann, Eoghan O'Connell, Maximilian Schlögel, Paul Müller
6
+ Maintainer-email: Paul Müller <dev@craban.de>
7
+ License-Expression: GPL-3.0-or-later
8
+ Project-URL: source, https://github.com/DC-analysis/DCscope
9
+ Project-URL: tracker, https://github.com/DC-analysis/DCscope/issues
10
+ Project-URL: documentation, https://dcscope.readthedocs.io
11
+ Project-URL: changelog, https://github.com/DC-analysis/DCscope/blob/main/CHANGELOG
12
+ Keywords: RT-DC,DC,deformability,cytometry
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Intended Audience :: Science/Research
16
+ Requires-Python: <4,>=3.9
17
+ Description-Content-Type: text/x-rst
18
+ License-File: LICENSE
19
+ Requires-Dist: dclab[dcor,export,http,s3]>=0.64.0
20
+ Requires-Dist: h5py>=2.8.0
21
+ Requires-Dist: numpy>=1.21
22
+ Requires-Dist: pygments
23
+ Requires-Dist: pyqt6
24
+ Requires-Dist: pyqtgraph==0.13.6
25
+ Requires-Dist: requests>=2.31.0
26
+ Requires-Dist: scipy>=1.10.0
27
+ Dynamic: license-file
28
+
29
+ |DCscope|
30
+ ===========
31
+
32
+ |PyPI Version| |Build Status| |Coverage Status| |Docs Status|
33
+
34
+
35
+ **DCscope** (formerly Shape-Out) is a graphical user interface for the
36
+ analysis and visualization of RT-DC datasets.
37
+
38
+
39
+ Documentation
40
+ -------------
41
+
42
+ The documentation, including the code reference and examples, is available at
43
+ `dcscope.readthedocs.io <https://dcscope.readthedocs.io>`__.
44
+
45
+
46
+ Installation
47
+ ------------
48
+ Installers for Windows and macOS are available at the `release page <https://github.com/DC-analysis/DCscope/releases>`__.
49
+
50
+ If you have Python 3 installed, you can install DCscope with
51
+
52
+ ::
53
+
54
+ pip install dcscope
55
+
56
+
57
+ Citing DCscope
58
+ ----------------
59
+ Please cite DCscope either in-line
60
+
61
+ ::
62
+
63
+ (...) using the analysis software DCscope (formerly Shape-Out) version 2.X.X
64
+ (available at https://github.com/DC-analysis/DCscope).
65
+
66
+ or in a bibliography
67
+
68
+ ::
69
+
70
+ Paul Müller and others (2019), DCscope (formerly Shape-Out) version 2.X.X:
71
+ Analysis software for real-time deformability cytometry [Software].
72
+ Available at https://github.com/DC-analysis/DCscope.
73
+
74
+ and replace ``2.X.X`` with the version of DCscope that you used.
75
+
76
+
77
+ Testing
78
+ -------
79
+
80
+ ::
81
+
82
+ pip install -e .
83
+ pip install -r tests/requirements.txt
84
+ pytest tests
85
+
86
+
87
+ .. |DCscope| image:: https://raw.github.com/DC-analysis/DCscope/main/docs/artwork/dcscope_splash.png
88
+ .. |PyPI Version| image:: https://img.shields.io/pypi/v/DCscope.svg
89
+ :target: https://pypi.python.org/pypi/DCscope
90
+ .. |Build Status| image:: https://img.shields.io/github/actions/workflow/status/DC-analysis/DCscope/check.yml?branch=main
91
+ :target: https://github.com/DC-analysis/DCscope/actions?query=workflow%3AChecks
92
+ .. |Coverage Status| image:: https://img.shields.io/codecov/c/github/DC-analysis/DCscope/main.svg
93
+ :target: https://codecov.io/gh/DC-analysis/DCscope
94
+ .. |Docs Status| image:: https://img.shields.io/readthedocs/dcscope
95
+ :target: https://readthedocs.org/projects/dcscope/builds/
@@ -0,0 +1,267 @@
1
+ dcscope/__init__.py,sha256=4KHUL8T1obUBVLBkTJz-hLOyHyVGkFWMGZ3jKtsLE0U,781
2
+ dcscope/__main__.py,sha256=GfRydVtghv5_cgsNCJSDucuCsw6CTdgUxcUYLaEOpVQ,1325
3
+ dcscope/_version.py,sha256=9_WhYJNhRaj9L7_266GQ6Y-8iotScrveL73mqmuD7ck,513
4
+ dcscope/extensions.py,sha256=o11b4TKHBG17IKWaQbn67uvqFI2oxoz-EZRRXV1Xzfw,8152
5
+ dcscope/idiom.py,sha256=0xLa8GkQFR5mf1OdLSvMzdCrD6MEcNtDoVlq78dVUHo,498
6
+ dcscope/meta_tool.py,sha256=enBBveXshP7njIt3pokD3D02xZZCAeeFF4yf8UH1r6M,4553
7
+ dcscope/plot_cache.py,sha256=XH_syGFbJhHX4TB520BISmJla6gh_W3cRO2fjoH_6x4,2365
8
+ dcscope/session.py,sha256=wRawCCNL5GxdSjm6AKAYNJfwJlb_SG-KplxA5ngYxOA,13745
9
+ dcscope/util.py,sha256=1LjyCWfC-9o6wd05TadNoCJV1SBKX8p2pFmsrADglyU,848
10
+ dcscope/gui/__init__.py,sha256=mPp1SE2Cm74OR3fIjDt6yYHfr09Mg-PYDfMCF6mL0FA,76
11
+ dcscope/gui/main.py,sha256=XIeJ2QPX9SAZa7eWoDzCjlIf0ITFezTFg0bjT2WXalA,43858
12
+ dcscope/gui/main.ui,sha256=WamukhTm3Zmm4WfgL-UU5VNMl-RuCFasPtuWW18KgNk,18154
13
+ dcscope/gui/pipeline_plot.py,sha256=j6TCNA_qKWXU4U8Ahzpn9X-d8pZFIPAZWNWjfYgW4Co,29536
14
+ dcscope/gui/pipeline_plot.ui,sha256=jqbR46Zc7h3n_8pAogPAMqwJk_jdf8ZbcC-rITL_7_w,1656
15
+ dcscope/gui/preferences.py,sha256=UUoEf6x-8jiIhPzBUNzDz3Y2uZQCcW49g8OLIwFcJBY,15505
16
+ dcscope/gui/preferences.ui,sha256=_8FyY4EXVLRWKEzTUFcLJEG_RpnmX7kCe34DVq1cYOk,17912
17
+ dcscope/gui/update.py,sha256=1TkDxZPngOPh2Th7zZuyYr7WZNCV5VtL0rm36aVUEbc,3122
18
+ dcscope/gui/analysis/__init__.py,sha256=HMpKdi3EQV8_F00hy1JaYClsUACPXbTVVDnM2u6dybk,335
19
+ dcscope/gui/analysis/ana_basins.py,sha256=qPRO6JJJOzxqk0sWM3V6csEeD7HQ0RDSkzl7KAKah_Q,4292
20
+ dcscope/gui/analysis/ana_basins.ui,sha256=rE9KDuZlnFUWyrhAZre76zBbiwXy5D9wNIK3Uev7LDI,3814
21
+ dcscope/gui/analysis/ana_filter.py,sha256=5FEZ3T5vllFbSUqg0A6d9IRnswWJsOQgJcIlDL-XJKA,13973
22
+ dcscope/gui/analysis/ana_filter.ui,sha256=TFu6pFBUCis6055Q5eQ-eeA-WJ1gx8ZcC7YyG_4DxRc,11173
23
+ dcscope/gui/analysis/ana_log.py,sha256=B690hWI5Jo9TUxKepBFC53MUrnEyVk7G-dbJRfpq9O0,4842
24
+ dcscope/gui/analysis/ana_log.ui,sha256=UHxux_AfWbcC28YvxFcDJMsEigjrQ1dNJ_2bED7jO8c,2646
25
+ dcscope/gui/analysis/ana_meta.py,sha256=3Fnp6YL1fCKNeVG5vL9nfO54BT9Lhq1SAp7gxt-SLaU,7484
26
+ dcscope/gui/analysis/ana_meta.ui,sha256=SJbUSXfN-e-CG00O8_Le66bC5BlWg8VGTBS-DunfKTU,4120
27
+ dcscope/gui/analysis/ana_plot.py,sha256=OXInlghMMfGXljNp4lCg95mpKE1qBgnha4d7TDrN7u0,27135
28
+ dcscope/gui/analysis/ana_plot.ui,sha256=mwdSlchrr--Dim1ArGzvH0ROJ9ShOUWD64lN0VrhGms,32925
29
+ dcscope/gui/analysis/ana_slot.py,sha256=x7vXBp9FaiCLifcQSoKs8kJ7AvL9UAlBwi60KzX2hec,21195
30
+ dcscope/gui/analysis/ana_slot.ui,sha256=QxSGSgEikeYTw52u3mstOElvvWDnOhVhPjACkpuPQto,20678
31
+ dcscope/gui/analysis/ana_tables.py,sha256=DcXk3TpXZcXyjZeQjJSWZHDFdcrukGNu9O7WSN1ERoU,9224
32
+ dcscope/gui/analysis/ana_tables.ui,sha256=tyuKo5LsT32sBXrkms6ZRcuGdqazXxWj_F5Qp0V_a4k,5769
33
+ dcscope/gui/analysis/ana_view.py,sha256=r3NYqIK5Z82JOSj38kn1B0YRsuGeO01ObdgXdOklTM4,2628
34
+ dcscope/gui/analysis/ana_view.ui,sha256=qykzGNH_GvFFoYmMh1IyfIqd_YlS0_Z48Yqwc5aiP_I,7479
35
+ dcscope/gui/analysis/dlg_slot_reorder.py,sha256=iG_piclTTTewv_ULyT1LAPcBUFGTS3FIyM3gy-fsnVY,1910
36
+ dcscope/gui/analysis/dlg_slot_reorder.ui,sha256=sD-XqfH4NPD94diJFSucG0FsvqCUmePEJBSezUD_bgI,3478
37
+ dcscope/gui/bulk/__init__.py,sha256=f_HDZ80oshNqEAnv1rX6nESv2XvmY0cXAQl77lJAyhw,67
38
+ dcscope/gui/bulk/bulk_emodulus.py,sha256=AaWt9X7lCO9gdyAwR1ow8jqqZdx_kZ_mKjLv2IEqoIw,7611
39
+ dcscope/gui/bulk/bulk_emodulus.ui,sha256=rtMUpSjRoM1htfOZsW71Y2ET0kDDG8YTJvilvVpdWGA,6590
40
+ dcscope/gui/compute/__init__.py,sha256=8J8sCxcv97SlFAIY7ws29qNEQf1HstYIjijJTjqaJ1I,106
41
+ dcscope/gui/compute/comp_lme4.py,sha256=UoxKWH1pEKdDThdphJyITQqcpLetV9MRoIYGo9yri3k,3955
42
+ dcscope/gui/compute/comp_lme4.ui,sha256=Fu6oXI20ui83iXMaMhNk1GRRtXNSlv9WkJgmI8EfhAQ,5077
43
+ dcscope/gui/compute/comp_lme4_dataset.py,sha256=q507RyikH5E69alPxhce8tjSrIvNWvtmEGkGhYr6qpQ,1844
44
+ dcscope/gui/compute/comp_lme4_dataset.ui,sha256=NJsdQbohAkK9DJoDAiZry0wH653l25FZcAgx2nR-vK4,2163
45
+ dcscope/gui/compute/comp_lme4_results.py,sha256=m9c8g252b6dQTrXEB11huwqPgsoBk7WONDLn_xRjFo4,4194
46
+ dcscope/gui/compute/comp_lme4_results.ui,sha256=k9Yb6dtQq36sS7U90Zt-Ht6ek_JZaZJ-PDtJvrdGCUI,7791
47
+ dcscope/gui/compute/comp_stats.py,sha256=sZ71cSrsBGTJK8NrYnKt3rHjM3-MtZ15eK-JZASo9yg,8705
48
+ dcscope/gui/compute/comp_stats.ui,sha256=uHn6PM8i1T7Xs7mDwulcXCbddGLPbPclA-qEhzKi0k0,5011
49
+ dcscope/gui/dcor/__init__.py,sha256=2jjLXvv9el1RY0SWBlAsvdSZD9RvpjcFJ4WK5rNAVeY,11443
50
+ dcscope/gui/dcor/dcor.ui,sha256=Sf8KGSjYwB0RdzphJLj67NcKYCJnCFlf1QyH296gPs4,2947
51
+ dcscope/gui/export/__init__.py,sha256=uRhO2PpCwG5JKeQfXtdQMqG4Ys9yVwOe0oojkinC880,139
52
+ dcscope/gui/export/e2data.py,sha256=N7_qauwHkDgKh3qmjOm7wxIGmwR2xoWO8C8ZbK4z2PQ,15072
53
+ dcscope/gui/export/e2data.ui,sha256=_DlM2nP8j9gET-N2ECZ3D9ItdYCz030GmZQ8CvafW2w,10495
54
+ dcscope/gui/export/e2filter.py,sha256=bxb1rP7PuP9hsu8TSs0TYkS3_GtdBVjPFvYmOidNkF8,3014
55
+ dcscope/gui/export/e2filter.ui,sha256=gR8eQ1Fqm0FFsKOf6KyXp-USSiQMOCgqEzvu8Ed4hxY,2740
56
+ dcscope/gui/export/e2plot.py,sha256=osPNux9rS3NZV2D8BxgwZqQX2ckvkgEzSvtq8HVdbvs,3306
57
+ dcscope/gui/export/e2plot.ui,sha256=dZWxqExmLJjdyfLDOUrHxSnoszxyBvzrf9_MKOS2vZc,4351
58
+ dcscope/gui/matrix/__init__.py,sha256=DUTHIh_zbiKvTmFVOyTVXPgcbfv7P-Z_TPLiS3CvQ2M,206
59
+ dcscope/gui/matrix/block_matrix.py,sha256=c238IHub25ST6gRBoffyc0zMa4JtnYk4MNF91WtM-xA,5406
60
+ dcscope/gui/matrix/block_matrix.ui,sha256=TTfBHPVy-5tnnEudr7RXGwPiBNyGuCp3hDaGYVVxX6c,6013
61
+ dcscope/gui/matrix/data_matrix.py,sha256=96JGeSZxqj7wKFTkNPDIWgZ3DZ5NepKYMEexxsPiYrM,21680
62
+ dcscope/gui/matrix/dm_dataset.py,sha256=_yb1JPxAv9SsNXmylFfitMMqPlRtIsUpDXHAbTVWAzc,4201
63
+ dcscope/gui/matrix/dm_dataset.ui,sha256=OYCWuZDnijb9uP9ovzqrsUh9tr9dCgHBD8sDPxynteU,10245
64
+ dcscope/gui/matrix/dm_element.py,sha256=rTzsxAxMYWP2_RIKAoq3Em3YxOTOmDI-Dj36fgKwJd4,3809
65
+ dcscope/gui/matrix/dm_element.ui,sha256=eesC1gBZkm_gtMEEMg2c1RpGwHfAKbV0iZmtijkDdkc,4313
66
+ dcscope/gui/matrix/dm_filter.py,sha256=1ROjFN1UP4W0Ct_U-v3sXqBrTBlBwhyddiIEJkxSz2w,3710
67
+ dcscope/gui/matrix/dm_filter.ui,sha256=TZB6YYOEPxattg9NVv5VX4hCrftXUmioZNd9tIksUFg,8290
68
+ dcscope/gui/matrix/plot_matrix.py,sha256=RQV5O_1YdJED2JePIgwruzY8ofwPzY6T86LSNGyx8uo,11343
69
+ dcscope/gui/matrix/pm_element.py,sha256=fZJYHoUi-mCScbcy-mOULite2GWV6vf3Ph3pd2HRgss,1333
70
+ dcscope/gui/matrix/pm_plot.py,sha256=EuqEr0zWbNDGBiIlw-8OxuRFAp-4JXzNt8ZNNBRWHWg,2693
71
+ dcscope/gui/matrix/pm_plot.ui,sha256=R0RbdCaOd2afZE7CcICs4Un61jvIaM2pgCAQYNprB2A,7107
72
+ dcscope/gui/quick_view/__init__.py,sha256=BsO68Kb2JiEf7tH5t27oarYQeRV21KWkRfr0hpVSU_U,45
73
+ dcscope/gui/quick_view/qv_main.py,sha256=Ie5KL3N62_cK96IDSgDgg7kTuPH0SO1CV85LaSe_MF4,44000
74
+ dcscope/gui/quick_view/qv_main.ui,sha256=WE2wMKMbP9QOkfGD923vPTtFJcKtOrPWPecI6ssTilI,45796
75
+ dcscope/gui/quick_view/qv_scatter.py,sha256=HrBO6y3AOWhFyR5mGGGwp3XLmiL0_YoEtwreBzdLsMU,10898
76
+ dcscope/gui/quick_view/qv_style.css,sha256=k4SvamRtR1Uiuk606-wyRe36lnGNySYP93_7_M-8ceE,150
77
+ dcscope/gui/widgets/__init__.py,sha256=lThuvCOnaNrcXf_QMmqRsswYJvJ5GC1CKab6TiZu-HM,680
78
+ dcscope/gui/widgets/bg_thread.py,sha256=sByJicDS9V9J4tX-g5whIsacd7C2tiyU1YhMSCjZizo,752
79
+ dcscope/gui/widgets/bulk_list.py,sha256=OvDjsGsHeXFN-bynRMZuHTJrMGRiJs0XpLaHIAXUA28,2665
80
+ dcscope/gui/widgets/bulk_list.ui,sha256=0Tz1QulqmK2kr4Cgm3QYMFvEbgZoKO36xsqsIN8a6ig,2635
81
+ dcscope/gui/widgets/double_spin_box_nan.py,sha256=9zVZ7IYBUVm6D2QUkxXXVeiY7aFwIZ7FZYm_nllWPas,2158
82
+ dcscope/gui/widgets/feature_combobox.py,sha256=QYEl8DnUW8bPeEMWoPVZW_4lDclmVS5H_v6UdOY8F7M,5482
83
+ dcscope/gui/widgets/get_path.py,sha256=hKv4fBju9UpgGIRak-Kf-HLL-76tSUdL8pOMZwAMTf8,1352
84
+ dcscope/gui/widgets/key_value_table_widget.css,sha256=VJGW-CJ1xKau4I5b1Yzo961UzpweC0x-75UgbyHYtiw,184
85
+ dcscope/gui/widgets/key_value_table_widget.py,sha256=cAMf0tIIN9VDax0dw9_YDxc9-Z5uynoXL-trLrWTyU0,3103
86
+ dcscope/gui/widgets/mdi_subwindow_wo_close.py,sha256=BUNDtTlomWR7BeCoAo2JFfjlz0N5PzLZeSOxPmCFJeA,429
87
+ dcscope/gui/widgets/qrangeslider.py,sha256=_bBB10Wedlrh7Xw94ozMEaUSEpjLlMt3zBiuuXyd87U,8637
88
+ dcscope/gui/widgets/rangecontrol.py,sha256=3vPDq0u4h9J9-LUBFu2dyUpeQBYCcmI0xCoJfkLhEgI,9853
89
+ dcscope/gui/widgets/rangecontrol.ui,sha256=FqMArARfdiXs_Wa8tGOIqEFmGJu61LXfS-aPi3LA9Ic,3511
90
+ dcscope/gui/widgets/simple_image_view.py,sha256=6JAXZY3ZbBcri4C745dIAsuHFL3budEqKzAzAeYbOBQ,1828
91
+ dcscope/gui/widgets/simple_plot_widget.py,sha256=OWiRoElyh4NCbBHd3yiN_H3hk6_s1ATpXVT8FAfXFwI,4112
92
+ dcscope/gui/widgets/so_colorbaritem.py,sha256=yey9rpnDYBrUrFWsL2oxdwa0E3gTWLODyDoUQ9hrkjU,919
93
+ dcscope/gui/widgets/wait_cursor.py,sha256=MqZYs91vqouKoHVk1SjP--IpnBMG6uzVbsApx3TSHuA,1099
94
+ dcscope/img/__init__.py,sha256=uhQcEW2Gs4wcMmAUcMMxIURoGO74w68GyWxKdKM1VZU,123
95
+ dcscope/img/icon.png,sha256=IBCuZaVVuKl3Q_lfwkSBJAgWKS6_5XoIHTlnExid8aE,9356
96
+ dcscope/img/icon.svg,sha256=AUSwnavFznkBKSHiIX6G2pEDdXQqUT1_PPoPrQB6uOY,3040
97
+ dcscope/img/splash.png,sha256=Rn61lxCNQEhg_CWsm05BrIWghyfkumO1iuEOQm1j_lg,4324
98
+ dcscope/img/icon-theme/collect_icons.py,sha256=P8PqeVDm6qVbdlpfFClZ2K7_V_wBb4fugztR0ppiNQ0,3658
99
+ dcscope/img/icon-theme/index.theme,sha256=ukUekfjGbw7DDOjeTX3Q78WvAD-Ydxoeftfi2BbtX3Q,1001
100
+ dcscope/img/icon-theme/breeze/COPYING-ICONS,sha256=ONtNiOo6aR1qQ78BYzm1XrizZ91-TLOb2M-qNneabnc,9362
101
+ dcscope/img/icon-theme/breeze/COPYING.LIB,sha256=qb3eVhbs3R6YC0TzYGAO6Hg7H5m4zIOivrFjoKOQ6GE,26527
102
+ dcscope/img/icon-theme/breeze/README,sha256=jTb4PZ9URg8p3HGRiae_ANoung6jiUcZVj6N-ObLr44,271
103
+ dcscope/img/icon-theme/breeze/actions/16/application-exit.svg,sha256=tYHXqZ2YDa5hcytUU-Wm71Xvsk66s70dNafW5rEQK8I,457
104
+ dcscope/img/icon-theme/breeze/actions/16/code-context.svg,sha256=UrrzePzxlCKSYm5ZpyT4MatwBR7YEmCXh_a6ZVKPtEY,1207
105
+ dcscope/img/icon-theme/breeze/actions/16/dialog-cancel.svg,sha256=-vLW0FzQcw8VCAeYCjek6cMcWkbgZ2eIYWS7e7HqUBI,766
106
+ dcscope/img/icon-theme/breeze/actions/16/dialog-close.svg,sha256=0jkR7WRhGk1Y-tC-xB6kvUX9dViSlpm-reY8tkPO5ws,626
107
+ dcscope/img/icon-theme/breeze/actions/16/dialog-messages.svg,sha256=scuObT1lYRShNxcvzicePty05YHV15-dhMI361BxFPQ,422
108
+ dcscope/img/icon-theme/breeze/actions/16/dialog-ok-apply.svg,sha256=7RXCtG3Tp0N5iRMURspfAdU3IXO2tAT3uwKwxBxz_9U,504
109
+ dcscope/img/icon-theme/breeze/actions/16/dialog-ok.svg,sha256=7RXCtG3Tp0N5iRMURspfAdU3IXO2tAT3uwKwxBxz_9U,504
110
+ dcscope/img/icon-theme/breeze/actions/16/document-open-folder.svg,sha256=x_w3ln6tmCFe4RdXpp2PXKOXydOKJZiYOoFFo-b3cQ0,603
111
+ dcscope/img/icon-theme/breeze/actions/16/document-open.svg,sha256=g1qnaory1hDYzDoj6qffivKScKg5OeLfJ-xLAXurqf4,526
112
+ dcscope/img/icon-theme/breeze/actions/16/document-save.svg,sha256=raWSzXoJQhQyGEYn2uos7sPp8aLfTwNgHJcxpEoC2hA,733
113
+ dcscope/img/icon-theme/breeze/actions/16/documentinfo.svg,sha256=eGznC9aXoIltD9nEp4_oPxXEUN2Pw0RmFtJOWqyWJcs,495
114
+ dcscope/img/icon-theme/breeze/actions/16/draw-watercolor.svg,sha256=HnZQ3Bfs6eXkV6RAnxkGLzMJz6dZkN5LmHMEOLgdKZ0,1150
115
+ dcscope/img/icon-theme/breeze/actions/16/edit-clear-all.svg,sha256=wXLj10O-0Xy0Wo4yYb1wEcZLuO2K31YKNQdHZfdC9Wg,1336
116
+ dcscope/img/icon-theme/breeze/actions/16/edit-clear.svg,sha256=VeUnxt1CcD2wZMFfLy9Dx8vD-rbSVFlj3etLEoeb_cI,673
117
+ dcscope/img/icon-theme/breeze/actions/16/edit-paste.svg,sha256=Opsugb_lfFIC2BcpVZAym1edEeYfgIvI-EE7Exs7zuY,612
118
+ dcscope/img/icon-theme/breeze/actions/16/globe.svg,sha256=ycEAJpcLR1rbad32RJ-_tYq-zhASox8zsgQBmoIWcbc,20688
119
+ dcscope/img/icon-theme/breeze/actions/16/gtk-preferences.svg,sha256=5TieoMr7Q-pQAqTVur1_OmKNWyZmyvzwUkVvTDrXMEY,989
120
+ dcscope/img/icon-theme/breeze/actions/16/list-add.svg,sha256=v_x3_yyLyZ2cL4iQP8gidebYmq-gUtugubpWYWi_zoM,490
121
+ dcscope/img/icon-theme/breeze/actions/16/messagebox_warning.svg,sha256=hU03UcicXAlXqBka2wcZVqCJJ6SXMYJe1JVdHB3z5XI,633
122
+ dcscope/img/icon-theme/breeze/actions/16/object-columns.svg,sha256=MG_Y95YDCmTaqjoDClJRUngUZByy_4QbWlBAKATXz_c,552
123
+ dcscope/img/icon-theme/breeze/actions/16/object-order-lower.svg,sha256=LoW8Oc8RHgcfjDwCWo1-pEJoHg48Q_kvUqfOkRW3Wt8,711
124
+ dcscope/img/icon-theme/breeze/actions/16/object-rows.svg,sha256=1C2FOB5IxUsruRjO6tz5o8mIu-HjOPPAdvoBeRe3A7k,552
125
+ dcscope/img/icon-theme/breeze/actions/16/office-chart-line-stacked.svg,sha256=UIpuYPULOR0kND8iI4yCeLYZe90oOHQnHrZGNbCavuA,1119
126
+ dcscope/img/icon-theme/breeze/actions/16/office-chart-ring.svg,sha256=jn9f8nv2XROddhPuqTJ2YyYewLv1O6_drp-4wumibbE,1255
127
+ dcscope/img/icon-theme/breeze/actions/16/office-chart-scatter.svg,sha256=s6E_wFLjgUmhVJkl-Xl2g0XJnNYht46gAHcnb3yhmiI,967
128
+ dcscope/img/icon-theme/breeze/actions/16/path-mode-polyline.svg,sha256=WZS8pVwYo3OgIEsQIcemYISgQm8YEGYWn2Oq3v_PL0E,610
129
+ dcscope/img/icon-theme/breeze/actions/16/preferences-activities.svg,sha256=4g9JGJvwOFEDqrUmdREypiTzqnOAu_8XH9a7c5uUOV0,1060
130
+ dcscope/img/icon-theme/breeze/actions/16/remove.svg,sha256=p4B63BlLao9TIILK2fdJ0YplL9NDQ3CjL09n_1ZUE6U,526
131
+ dcscope/img/icon-theme/breeze/actions/16/search.svg,sha256=aliGbYTVW9vM8nr7h05tq5CypXNCIxS1UC1VHk2iIl8,684
132
+ dcscope/img/icon-theme/breeze/actions/16/show-grid.svg,sha256=QRGLuETSHzlQwVoROEIGuPUQPtFofv1jzLSQ_Rj3ct8,656
133
+ dcscope/img/icon-theme/breeze/actions/16/special_paste.svg,sha256=i4fxVWk0protlsowQT7rAPCylfxUcd4ysgqR2dOyXQA,898
134
+ dcscope/img/icon-theme/breeze/actions/16/tools-wizard.svg,sha256=ZE-_vS6TZsB2H7U-wPu5HOl-SCczmZ1kp-0CwuQwk4g,497
135
+ dcscope/img/icon-theme/breeze/actions/16/view-calendar-list.svg,sha256=ybHn0ii9xuX1kGzXh3eIZZmySSpUnF6FiATwdqfd0HA,633
136
+ dcscope/img/icon-theme/breeze/actions/16/view-filter.svg,sha256=jtOgc559o__NXyyTzelV_8c0JooTSCJTpQuWdyDc1P8,575
137
+ dcscope/img/icon-theme/breeze/actions/16/view-list-tree.svg,sha256=6wlhBd9ftstxaW8O1fZucB0WQ_QiC32IabbXnHQTFLI,558
138
+ dcscope/img/icon-theme/breeze/actions/16/view-statistics.svg,sha256=E8g5hYzhP-i3SgUy8MLqjrPLDspPii1VwIia72-u7CU,445
139
+ dcscope/img/icon-theme/breeze/actions/16/visibility.svg,sha256=RTmdg98iTk4z0MxHnfgfnrBOkJkDevRLE34d-lqZl8Y,1447
140
+ dcscope/img/icon-theme/breeze/actions/22/application-exit.svg,sha256=_8g2T1mzC862TZEnW9I9CrcrQrNDXFW41X-uF3FMeXk,447
141
+ dcscope/img/icon-theme/breeze/actions/22/code-context.svg,sha256=u5lBl-zwBxj8enedpTnkYGp_hh6aYEMMpT3X3K0GQYk,1258
142
+ dcscope/img/icon-theme/breeze/actions/22/dialog-cancel.svg,sha256=_t5aUThF36PX69v96V9Ngizbqkj6b_A-tbN-S3kxByg,962
143
+ dcscope/img/icon-theme/breeze/actions/22/dialog-close.svg,sha256=tWqMRNcQX4Hk3elNbNT1UKfKe2ujPOE8jAU-7Jx2CqM,487
144
+ dcscope/img/icon-theme/breeze/actions/22/dialog-messages.svg,sha256=8CcyBYQ8w07GDDQAmrU9m6FPOxWaWhLxEdD2qQiMcSs,467
145
+ dcscope/img/icon-theme/breeze/actions/22/dialog-ok-apply.svg,sha256=31gaCjxcK90u3X5qEtVZg5M0YZfuhm_n19DRn_Yfrn4,567
146
+ dcscope/img/icon-theme/breeze/actions/22/dialog-ok.svg,sha256=31gaCjxcK90u3X5qEtVZg5M0YZfuhm_n19DRn_Yfrn4,567
147
+ dcscope/img/icon-theme/breeze/actions/22/document-open-folder.svg,sha256=AHbUatZAKZRGsT1JBh9MZ1UR0dlry_UgnzW2d_hU0nA,472
148
+ dcscope/img/icon-theme/breeze/actions/22/document-open.svg,sha256=7xRFOZ_7yqjrQ8QHBTUfFX9KKxFprOPSlPJkqF8pVkk,595
149
+ dcscope/img/icon-theme/breeze/actions/22/document-save.svg,sha256=onTpdrT6IULo20D9i8Z3I4-4MMRsaKLDVK19PxmNznQ,788
150
+ dcscope/img/icon-theme/breeze/actions/22/documentinfo.svg,sha256=w7Y-RQb-kkFptJObISGVwRsduDSmACnb8FNxhQPQbSI,640
151
+ dcscope/img/icon-theme/breeze/actions/22/draw-watercolor.svg,sha256=G99or7c6lvtMie1KI5Tz8ngdJphaDI9Q5V2HKdbzDd4,1275
152
+ dcscope/img/icon-theme/breeze/actions/22/edit-clear-all.svg,sha256=8LhttlwieeQ9vv7q1ktAICmN91eaxdknlS3l4-DMHlk,1182
153
+ dcscope/img/icon-theme/breeze/actions/22/edit-clear.svg,sha256=RxcPfHuCTs66LY42AvpUBtzsMCH7uyXCwShzNG6LI7c,663
154
+ dcscope/img/icon-theme/breeze/actions/22/edit-paste.svg,sha256=X3BXsqilQ-HeavLNa3nz7hWFn--X1ZiHRMlW2Bw-4CU,608
155
+ dcscope/img/icon-theme/breeze/actions/22/globe.svg,sha256=Hw2IAB8Ui1KDui6cymX0Cm5mpMqYQkGBo9fzx9DLg28,23995
156
+ dcscope/img/icon-theme/breeze/actions/22/gtk-preferences.svg,sha256=Nu9rXisGO0mCsBRMFM6g_oGNnSSKloYVT6lofzya8dI,904
157
+ dcscope/img/icon-theme/breeze/actions/22/list-add.svg,sha256=aEA5DNxL5XPCB4UWZ2gB-HwBlQPnRdRJV6a7xpuCNuw,441
158
+ dcscope/img/icon-theme/breeze/actions/22/messagebox_warning.svg,sha256=fSC28C7g-ngJLwn5i4AyJhxUVQNHq19ZzcnCDE6AGNw,637
159
+ dcscope/img/icon-theme/breeze/actions/22/object-columns.svg,sha256=ERqsanH-kZAsmppwN6kURptth1J2EkL88UflUwamCa8,560
160
+ dcscope/img/icon-theme/breeze/actions/22/object-order-lower.svg,sha256=1ZBiSDqU4xaptt78cniyYkVFmcHFcmKafGpYHQss3Hs,913
161
+ dcscope/img/icon-theme/breeze/actions/22/object-rows.svg,sha256=P2Y7yUL7ONLS5OrUFG6lkUlB-8sZc-Of-lQqYl0phB8,619
162
+ dcscope/img/icon-theme/breeze/actions/22/office-chart-line-stacked.svg,sha256=U_775o4Htr_YCbGp8iuUq6Jirl7FuyNBe_S6Viz4qSg,1306
163
+ dcscope/img/icon-theme/breeze/actions/22/office-chart-ring.svg,sha256=zj_xn-HhmHSUybsfSCh62h5ZqQZMOVN2-N2b11A70po,1611
164
+ dcscope/img/icon-theme/breeze/actions/22/office-chart-scatter.svg,sha256=tDQkUxv7h3pniJzmmCtSZFutO-2UjnCQjg8j86TOpcI,1265
165
+ dcscope/img/icon-theme/breeze/actions/22/path-mode-polyline.svg,sha256=T2warws2abmShpVoyejXLjjHPKVrWI9fZnkknnnZ-mM,674
166
+ dcscope/img/icon-theme/breeze/actions/22/preferences-activities.svg,sha256=37jmWJzVRwOFMX1d1Aos0UN2ZrlrbEgRWhTv4eyBRTA,1087
167
+ dcscope/img/icon-theme/breeze/actions/22/remove.svg,sha256=nI9yVXrqQtgCeT5svzzQz2JfURI-I3uLoS775k4exF0,570
168
+ dcscope/img/icon-theme/breeze/actions/22/special_paste.svg,sha256=leVP4NSAFjK-Zt2zBk3P5VjGlOiq5NI63i5dfnzCkGA,908
169
+ dcscope/img/icon-theme/breeze/actions/22/tools-wizard.svg,sha256=YX1DRcflsnWGenWQnKFs-aPPkhB-IKc8tfBcMTJjY4Y,870
170
+ dcscope/img/icon-theme/breeze/actions/22/view-calendar-list.svg,sha256=-sso8KVngwWco1zWzWyIsZueI3HLxxL8VYfLWg-RVI4,788
171
+ dcscope/img/icon-theme/breeze/actions/22/view-filter.svg,sha256=hP60Kxg8BjZzNJUIcmJIgaQprv_igwwZJ0WCoz3xFHY,684
172
+ dcscope/img/icon-theme/breeze/actions/22/view-list-tree.svg,sha256=8XzyOyGZuApZEJ7Lyk3FroLMLxtbUZgIaTbWKS33tk4,578
173
+ dcscope/img/icon-theme/breeze/actions/22/view-statistics.svg,sha256=xGj4ZhtQWa3TR2z0xtxnGPh53Q305nH74l0xJHAq9Rk,452
174
+ dcscope/img/icon-theme/breeze/actions/22/visibility.svg,sha256=tfC8HKyfqfpkOBJzm9a85N9F9ul_fPwQdTlJ1bzEJ1k,1062
175
+ dcscope/img/icon-theme/breeze/actions/24/application-exit.svg,sha256=U07wdNwXkRHKXjWzXJKJVPkieMTcvOrpV64YgKAqpbw,473
176
+ dcscope/img/icon-theme/breeze/actions/24/code-context.svg,sha256=rzx0qP0pYPOAgh7mJ96S4rk2iiE-KZvp_PfNBPvGKBY,1293
177
+ dcscope/img/icon-theme/breeze/actions/24/dialog-cancel.svg,sha256=zKyjlBSDg7NNwLkD_OaI0ohWwdbcAY9itms4y3IgvWs,1001
178
+ dcscope/img/icon-theme/breeze/actions/24/dialog-close.svg,sha256=h2m2pnCYZm9qzGAg73KZ4B4SPQrpk2XdQTplbTsXyiw,521
179
+ dcscope/img/icon-theme/breeze/actions/24/dialog-messages.svg,sha256=i_dpdY4bQKde-yYJgwDQDSIooaj0bhTMxMZgbykv2dg,506
180
+ dcscope/img/icon-theme/breeze/actions/24/dialog-ok-apply.svg,sha256=h4ShPVhArFjK6LDEiX4W-s6s48QEsHRtfwFNINEb_B0,605
181
+ dcscope/img/icon-theme/breeze/actions/24/dialog-ok.svg,sha256=vfCd5yS7_XQl9h7IXI7TBG9RUaTKsj087wMbKs9KFls,601
182
+ dcscope/img/icon-theme/breeze/actions/24/document-open-folder.svg,sha256=4rB3mOOLfAgJ3xwcFxfwOfHOB2PnE6GF7xV-DkW3hbg,508
183
+ dcscope/img/icon-theme/breeze/actions/24/document-open.svg,sha256=Dn4iOXnBYFfC2FYdIsR7-xiyg-5mWPJuxgUS1R1uQ20,640
184
+ dcscope/img/icon-theme/breeze/actions/24/document-save.svg,sha256=pqfjaIPvjBUzHlT10-MfoRxIV_fNVcb6iS4R0oUNWsw,833
185
+ dcscope/img/icon-theme/breeze/actions/24/documentinfo.svg,sha256=hZFto1UxAjSdthh_2tRFxpOx7drCVE3bsjyjhtG9Bqk,674
186
+ dcscope/img/icon-theme/breeze/actions/24/draw-watercolor.svg,sha256=TuDgGhiP3tr77FXEZjY63iwaGLX0gzsElBOZgyD-bDY,1323
187
+ dcscope/img/icon-theme/breeze/actions/24/edit-clear-all.svg,sha256=W_agVBYe5l_JSQZrlbIO2ZVTTvmANVZYPw4qf2CwZLI,1216
188
+ dcscope/img/icon-theme/breeze/actions/24/edit-clear.svg,sha256=8Zy5_hy8KAr0d3OlZKXzqz7lBs3-hGuIPbninTMd5WA,697
189
+ dcscope/img/icon-theme/breeze/actions/24/edit-paste.svg,sha256=Qxd6BIYx32yuqZy_Hj13Jspbf_VC5BkbDbLGceeeMRk,651
190
+ dcscope/img/icon-theme/breeze/actions/24/globe.svg,sha256=yOpaPlnm7YjShkTzgA8K05XDroXmrcu9s2Pk85RCeVM,24065
191
+ dcscope/img/icon-theme/breeze/actions/24/gtk-preferences.svg,sha256=HoTt-aOayG4_15RJoGs620GU1Z6SgU1Xx35xOqQ-a7g,938
192
+ dcscope/img/icon-theme/breeze/actions/24/list-add.svg,sha256=dDAID7pbmfE_HE2D_woPembJcW5vShESmfFAz72fMzM,486
193
+ dcscope/img/icon-theme/breeze/actions/24/messagebox_warning.svg,sha256=Y98MK8MP43WG_j9a4dgirp2gcNRtYaWF8IPa6hyHKMM,666
194
+ dcscope/img/icon-theme/breeze/actions/24/object-columns.svg,sha256=fiBGaIEr_mWu8ygA9gbwiPJ202gDUBxZQru0nnP0d2o,606
195
+ dcscope/img/icon-theme/breeze/actions/24/object-order-lower.svg,sha256=tDVvQKccXgZaY-6pOmM7aWjcEjRt1w6Gx9Wh4UV4GUQ,956
196
+ dcscope/img/icon-theme/breeze/actions/24/object-rows.svg,sha256=6ArhxsaFJ6ptROt6qVOwmhMuAeUm3KbwmilCnGci2SI,662
197
+ dcscope/img/icon-theme/breeze/actions/24/office-chart-line-stacked.svg,sha256=Cu016aex2m9JI5HxvHWH2do071wQfxDWvriGu77R2SE,1349
198
+ dcscope/img/icon-theme/breeze/actions/24/office-chart-ring.svg,sha256=hTULerEL82OF8ES5CJbNzZzwkptqbpzYWUJi7ukW7Xk,1654
199
+ dcscope/img/icon-theme/breeze/actions/24/office-chart-scatter.svg,sha256=RAxD7kW57G0XMVL_Pi-ICzIkC5xeUu8tHui6jxYXsKM,1308
200
+ dcscope/img/icon-theme/breeze/actions/24/path-mode-polyline.svg,sha256=nDiqwJ5DnOz41wIacErOaii0RHQYnEjt98CWVyDIZ_8,717
201
+ dcscope/img/icon-theme/breeze/actions/24/preferences-activities.svg,sha256=GWcfXqOb9A8r3nDZjFzt-RZ1ZyyyHRy0VZXMUyruDfI,1074
202
+ dcscope/img/icon-theme/breeze/actions/24/remove.svg,sha256=uqQ8TT50LldaHocoEtpyv7XQC3x4TKNxMu9LvOVl6EM,389
203
+ dcscope/img/icon-theme/breeze/actions/24/special_paste.svg,sha256=oxq-E6TK4uP5Xn6asH1FXYTJMpi3mC3DCYR719to4YI,957
204
+ dcscope/img/icon-theme/breeze/actions/24/tools-wizard.svg,sha256=ECU2bjaqeUlbzVTlS9f2JhCI8VRF6ndb6zRc-m-oSF4,915
205
+ dcscope/img/icon-theme/breeze/actions/24/view-calendar-list.svg,sha256=d7mV4GhLAbm_tgyR9efZxeb4hYbfPh6NnBShwy-NrUw,836
206
+ dcscope/img/icon-theme/breeze/actions/24/view-filter.svg,sha256=u5-oKHtDKT_YrRSH-xuHN2BTihOHy4ra71TzvkWCpuk,732
207
+ dcscope/img/icon-theme/breeze/actions/24/view-list-tree.svg,sha256=JLGteyo8-cnJzadX5WYF2jZndmAN2vYIHTKgN_PXlvE,626
208
+ dcscope/img/icon-theme/breeze/actions/24/view-statistics.svg,sha256=iZ-jly3ZI8vZ3tPq7y2i_NRCIQHrHXbT_V4QzPDMb78,500
209
+ dcscope/img/icon-theme/breeze/actions/24/visibility.svg,sha256=QmblhvKUfKvlQVlc0r42YhSkh_o0HxjqXqaOSdhImkQ,1096
210
+ dcscope/img/icon-theme/breeze/actions/32/application-exit.svg,sha256=bqjTXdGfQJ7nG7Sji6iRkq82pcTRKP_euNqp6zPOJ7Q,421
211
+ dcscope/img/icon-theme/breeze/actions/32/dialog-cancel.svg,sha256=xRzp-BAdmeCqt7rz3HOeDgpYoE0vSvEeEY7XCf07FD4,733
212
+ dcscope/img/icon-theme/breeze/actions/32/dialog-messages.svg,sha256=cw-2fGhXtUGumwzERN57fOwNzRlA39m9Cw5snFbs2dg,375
213
+ dcscope/img/icon-theme/breeze/actions/32/dialog-ok-apply.svg,sha256=3LosQDuh5e29atli3IaVZpNSACE-dY83GURZJ-eipiA,355
214
+ dcscope/img/icon-theme/breeze/actions/32/dialog-ok.svg,sha256=3LosQDuh5e29atli3IaVZpNSACE-dY83GURZJ-eipiA,355
215
+ dcscope/img/icon-theme/breeze/actions/32/document-open-folder.svg,sha256=58JYWpovZmkps1cv6owXL760RZu4ZBAz18oZmoqhDQM,391
216
+ dcscope/img/icon-theme/breeze/actions/32/document-open.svg,sha256=ADQyqjO_1fOw0elCp-Sv2inth24FY11g1aCCtqypZao,705
217
+ dcscope/img/icon-theme/breeze/actions/32/document-save.svg,sha256=Rh02_si4a-w3oHcQ3iKuJB5ZrLxoyGvKxO_meWTTfKQ,665
218
+ dcscope/img/icon-theme/breeze/actions/32/gtk-preferences.svg,sha256=9r3EPtPJlrfyRMmcyZdAHYbp1eafGJI4KjAm4oe4RhM,725
219
+ dcscope/img/icon-theme/breeze/actions/32/object-order-lower.svg,sha256=t9w8hFi1DERp65NswR3bNZ6RtzLGKpSC1oNUwpgyXHI,918
220
+ dcscope/img/icon-theme/breeze/actions/32/view-filter.svg,sha256=VEXZsk0Q3jJrAz3VtyH4YjW9T4YZZDAcmnps9VmM3UM,820
221
+ dcscope/img/icon-theme/breeze/actions/32/view-list-tree.svg,sha256=V5VDe_xRPf7gPoZ4AKTeWCw9tB5dyHnrKwrnujwwRuM,625
222
+ dcscope/img/icon-theme/breeze/places/16/folder-cloud.svg,sha256=EXLFiygJGivPqnCb8TuQFQ7F7jRW1VpkmnXCxeJU3NA,711
223
+ dcscope/img/icon-theme/breeze/places/16/folder.svg,sha256=0TqMVI0KW5eZZaZR5YWmuNsFN821B0SVb7uSjwdNsZs,523
224
+ dcscope/img/icon-theme/breeze/places/22/folder-cloud.svg,sha256=sAkH67ZevVHIy1Va0cCfu8IHXRK_K5pKvmcsN1zG5Ck,624
225
+ dcscope/img/icon-theme/breeze/places/22/folder.svg,sha256=XKQvdkWZZzzPm2eClhSTG0_0A2dFqPuOCtKcueZyrGs,540
226
+ dcscope/img/icon-theme/breeze/places/24/folder-cloud.svg,sha256=GsNDCFZvkGu-kZlO3E_LWgXJ9P__aIpePKKAmn2MU-c,661
227
+ dcscope/img/icon-theme/breeze/places/24/folder.svg,sha256=mXWYaec9rV00G7DFQMttKo6pBL9Aljc5oJ32CR6KOG4,581
228
+ dcscope/img/icon-theme/breeze/places/32/folder-cloud.svg,sha256=Ju9dI3UsQqVf6SP8cTxeFsRIsl5TXQo3MlY_gn-er-Q,1456
229
+ dcscope/img/icon-theme/breeze/places/32/folder.svg,sha256=5TJkGFIb8hxE-DWvbMJjBCwe5gZ_CYbAuB6FWo_a9xU,982
230
+ dcscope/img/icon-theme/breeze/places/64/folder-cloud.svg,sha256=ihcW6jA6AJCST8KGisP6Cfu1EOqz4L6H6nAvjSynOCA,2388
231
+ dcscope/img/icon-theme/breeze/places/64/folder.svg,sha256=G_I3Bqu6TKoZvgi21qORi1iLmi1URqAnhHpcAEZCh6Y,1148
232
+ dcscope/img/icon-theme/breeze/status/16/dialog-error.svg,sha256=9J3zt-P3waX7elOJMeGyXvtzzg_CNpkzBJZGYCpUSg0,465
233
+ dcscope/img/icon-theme/breeze/status/16/dialog-information.svg,sha256=KV7GV04BNq8eK2tWHGQMZksNWeU41msbOPk8srCaiIs,370
234
+ dcscope/img/icon-theme/breeze/status/16/dialog-question.svg,sha256=k6zkxLO1yZvtMUu69spPMoiHEz2ZM1bfXMuuZwt6Wlo,389
235
+ dcscope/img/icon-theme/breeze/status/16/dialog-warning.svg,sha256=OZnE-ACKkG5Ut3OWmHv9w1yv4O8VrojMEFHhF6_014o,603
236
+ dcscope/img/icon-theme/breeze/status/22/dialog-error.svg,sha256=ud-rnq87bVkUcM3lr46NAQFK7D_wtVTcbvaovUI3YLY,471
237
+ dcscope/img/icon-theme/breeze/status/22/dialog-information.svg,sha256=zov7G-gJTneg98YzHeyG6eAMqbkBz0UW2Olb-MYTKqw,371
238
+ dcscope/img/icon-theme/breeze/status/22/dialog-question.svg,sha256=5UGOBEhdg9ZESS1XloFjnCHi2SOQc7U84dUXRHOu_co,396
239
+ dcscope/img/icon-theme/breeze/status/22/dialog-warning.svg,sha256=1IC3yvw7i53geSdI6M-BkOztYQnSR8ZnyQsC9zan1yU,602
240
+ dcscope/img/icon-theme/breeze/status/24/dialog-error.svg,sha256=uKRlz-3RURBxP-afdTfVjZXM5MFjUISNT4UzDthWvuc,559
241
+ dcscope/img/icon-theme/breeze/status/24/dialog-information.svg,sha256=hjB5ekG46BeNVRPgka6F5na1qWNi5i4_JcwgQLxTN5M,507
242
+ dcscope/img/icon-theme/breeze/status/24/dialog-question.svg,sha256=e5SyrDs6hqonf6Hk9FuCLTTg_xoOEa-Cm3-KaB59jEk,457
243
+ dcscope/img/icon-theme/breeze/status/24/dialog-warning.svg,sha256=X_OAWmvmadCdfJwkp42DJ9uLr4377h2W82J-HISbflM,363
244
+ dcscope/img/icon-theme/breeze/status/64/dialog-error.svg,sha256=8AUHyil-H5yW7ND4hwS1C__su_wJjz3jiUU7W6CNDe0,1986
245
+ dcscope/img/icon-theme/breeze/status/64/dialog-information.svg,sha256=f_EpLrtjtc14pt5cfvTii8FkkusLCd3RGlMcJLVQcnM,1824
246
+ dcscope/img/icon-theme/breeze/status/64/dialog-question.svg,sha256=9J4c0msAVTgBGsgmDH4RWHdlNwO3FzjwB3_IV_kHFQg,2488
247
+ dcscope/img/icon-theme/breeze/status/64/dialog-warning.svg,sha256=uAOBPLg5TZ_kgSuNTHp9qH0eCEKytg0eRfwsLklnY9Q,1660
248
+ dcscope/img/icon-theme/dcscope/dcor.png,sha256=EdmFeAMJyapD94VVTt5uFgp_oc6D7_FyWhFyKeQqttw,7277
249
+ dcscope/img/icon-theme/dcscope/edit-copy-anew.svg,sha256=UmCYUFaHGZa-qR4u2pc8c8fmH2X2XVI5fTcLdjljVR8,522
250
+ dcscope/img/icon-theme/dcscope/emodulus.svg,sha256=gGovnSEyqPpObU8QH_M4Ul0y893IDiNd39OSsVw2YDY,2279
251
+ dcscope/img/icon-theme/dcscope/filter_ray.svg,sha256=dHt6V9LzmwcvFdD2sMYsKbcvBtnF8GnV1ciYrOCqV7o,1819
252
+ dcscope/img/icon-theme/dcscope/region_channel.svg,sha256=12HHNvjo2N3WN0ID8dJzS6HxP8YWFhDzPO5_7LdAoJ0,2873
253
+ dcscope/img/icon-theme/dcscope/region_reservoir.svg,sha256=5dMJ-YTab20fKQAcqZWCh3mreFP0U4FRqf3KeFpoW2I,2997
254
+ dcscope/img/icon-theme/dcscope/rlang.svg,sha256=JvtKkKnDZaqvOPYPPGCsowfnI1_fQ6W4qTWEkPqaq4E,4187
255
+ dcscope/img/icon-theme/dcscope/statistical_significance.svg,sha256=o8O7QEhLHRNm7_vCTCOcqmIw8NQhjcigyQgIHj_jcDg,4126
256
+ dcscope/pipeline/__init__.py,sha256=LJuJupcElWuo3y7dwk11VdsQ5BxtzBnJJbzouSCNKFs,212
257
+ dcscope/pipeline/core.py,sha256=5XvBtQv_oOw_pm6uPTM9jZ-mh8mqRw9mO02oY6e-7ac,22899
258
+ dcscope/pipeline/dataslot.py,sha256=2Mgm3yYxPi2QFke9yCqBiXjgiAKumabpKyvqh6piHIY,10005
259
+ dcscope/pipeline/filter.py,sha256=oMZKh5kJJ4q7xcVK_UgOX-LYjxmyacgRbWq3nAiSgmk,5417
260
+ dcscope/pipeline/filter_ray.py,sha256=RphTGpdMaXWqhdhbeQMpHQNy4O-g8eOAtNZ25CvYnOs,6385
261
+ dcscope/pipeline/plot.py,sha256=-uu3H1Ynn2d3p33QE-tC3kruu3-J-B11Aia3BeBzw-I,5918
262
+ dcscope-2.22.1.dist-info/licenses/LICENSE,sha256=GzeCzK17hhQQDNow0_r0L8OfLpeTKQjFQwBQU7ZUymg,32473
263
+ dcscope-2.22.1.dist-info/METADATA,sha256=fshTKt-I2z9O-1lCOII_ypw5ff2HpScNcOmTkdu3OOM,3012
264
+ dcscope-2.22.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
265
+ dcscope-2.22.1.dist-info/entry_points.txt,sha256=HXvkJiPzCPUPf4EVwkFIuWoWIH_eL5qT09fW-WZe7jY,50
266
+ dcscope-2.22.1.dist-info/top_level.txt,sha256=P591SUldozqdKNDL1T2dndlhHpzTcEtjQ3UR2OMK0vc,8
267
+ dcscope-2.22.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ dcscope = dcscope.__main__:main