tomwer 1.3.6__py3-none-any.whl → 1.3.7__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.
- orangecontrib/tomwer/test/TestAcquisition.py +246 -0
- orangecontrib/tomwer/widgets/cluster/test/test_future_supervisorow.py +87 -0
- orangecontrib/tomwer/widgets/cluster/test/test_slurm_clusterow.py +67 -0
- orangecontrib/tomwer/widgets/control/test/test_advancement.py +51 -0
- orangecontrib/tomwer/widgets/control/test/test_data_validator.py +55 -0
- orangecontrib/tomwer/widgets/control/test/test_datadiscovery.py +131 -0
- orangecontrib/tomwer/widgets/control/test/test_datalist.py +70 -0
- orangecontrib/tomwer/widgets/control/test/test_datalistener.py +137 -0
- orangecontrib/tomwer/widgets/control/test/test_dataselector.py +95 -0
- orangecontrib/tomwer/widgets/control/test/test_datawatcher.py +436 -0
- orangecontrib/tomwer/widgets/control/test/test_emailow.py +29 -0
- orangecontrib/tomwer/widgets/control/test/test_notifier.py +51 -0
- orangecontrib/tomwer/widgets/control/test/test_nxtomo_concatenate_ow.py +64 -0
- orangecontrib/tomwer/widgets/control/test/test_nxtomomill.py +160 -0
- orangecontrib/tomwer/widgets/control/test/test_reduce_dark_flat_selector.py +40 -0
- orangecontrib/tomwer/widgets/control/test/test_singletomoobj.py +40 -0
- orangecontrib/tomwer/widgets/control/test/test_timerow.py +51 -0
- orangecontrib/tomwer/widgets/control/test/test_tomoobj_serie.py +96 -0
- orangecontrib/tomwer/widgets/control/test/test_volume_selector.py +69 -0
- orangecontrib/tomwer/widgets/control/test/test_volumesymlink.py +51 -0
- orangecontrib/tomwer/widgets/debugtools/test/test_dataset_generator.py +57 -0
- orangecontrib/tomwer/widgets/debugtools/test/test_object_inspector.py +62 -0
- orangecontrib/tomwer/widgets/other/test/test_pythonscript.py +31 -0
- orangecontrib/tomwer/widgets/reconstruction/test/test_axis.py +224 -0
- orangecontrib/tomwer/widgets/reconstruction/test/test_cast_volumeow.py +85 -0
- orangecontrib/tomwer/widgets/reconstruction/test/test_dark_refs_widget.py +136 -0
- orangecontrib/tomwer/widgets/reconstruction/test/test_delta_beta_selector.py +15 -0
- orangecontrib/tomwer/widgets/reconstruction/test/test_i_norm.py +226 -0
- orangecontrib/tomwer/widgets/reconstruction/test/test_nabu_helical_prepare_weights_double.py +20 -0
- orangecontrib/tomwer/widgets/reconstruction/test/test_nabu_volume.py +100 -0
- orangecontrib/tomwer/widgets/reconstruction/test/test_nabu_widget.py +107 -0
- orangecontrib/tomwer/widgets/reconstruction/test/test_sa_delta_beta.py +194 -0
- orangecontrib/tomwer/widgets/reconstruction/test/test_saaxis.py +220 -0
- orangecontrib/tomwer/widgets/stitching/test/test_zstitching.py +308 -0
- orangecontrib/tomwer/widgets/test/test_conditions.py +111 -0
- orangecontrib/tomwer/widgets/test/test_darkref.py +251 -0
- orangecontrib/tomwer/widgets/test/test_foldertransfert.py +131 -0
- orangecontrib/tomwer/widgets/visualization/test/test_dataviewerow.py +83 -0
- orangecontrib/tomwer/widgets/visualization/test/test_diffviewerow.py +65 -0
- orangecontrib/tomwer/widgets/visualization/test/test_live_sliceow.py +63 -0
- orangecontrib/tomwer/widgets/visualization/test/test_nxtomo_metadata_viewer.py +29 -0
- orangecontrib/tomwer/widgets/visualization/test/test_radio_stackow.py +56 -0
- orangecontrib/tomwer/widgets/visualization/test/test_sample_movedow.py +72 -0
- orangecontrib/tomwer/widgets/visualization/test/test_sinogram_viewerow.py +56 -0
- orangecontrib/tomwer/widgets/visualization/test/test_slice_stackow.py +57 -0
- orangecontrib/tomwer/widgets/visualization/test/test_volume_viewerow.py +57 -0
- tomwer/core/log/test/test_processlog.py +41 -0
- tomwer/core/process/edit/test/test_darkflatpatch.py +269 -0
- tomwer/core/process/edit/test/test_imagekey_editor.py +125 -0
- tomwer/core/process/icat/test/test_create_screenshots.py +98 -0
- tomwer/core/process/icat/test/test_gallery.py +170 -0
- tomwer/core/process/reconstruction/nabu/test/test_castvolume.py +143 -0
- tomwer/core/process/reconstruction/nabu/test/test_nabu_utils.py +203 -0
- tomwer/core/process/reconstruction/nabu/test/test_nabunormalization.py +222 -0
- tomwer/core/process/script/test/test_script.py +68 -0
- tomwer/core/process/stitching/test/test_metadataholder.py +17 -0
- tomwer/core/process/visualization/test/test_data_viewer.py +39 -0
- tomwer/core/process/visualization/test/test_diff_viewer.py +39 -0
- tomwer/core/process/visualization/test/test_image_stack_viewer.py +41 -0
- tomwer/core/process/visualization/test/test_radio_stack.py +39 -0
- tomwer/core/process/visualization/test/test_sample_moved.py +41 -0
- tomwer/core/process/visualization/test/test_sinogram_viewer.py +39 -0
- tomwer/core/process/visualization/test/test_slice_stack.py +39 -0
- tomwer/core/process/visualization/test/test_volume_viewer.py +39 -0
- tomwer/core/utils/test/test_image.py +30 -0
- tomwer/core/utils/test/test_nxtomo.py +66 -0
- tomwer/core/utils/test/test_scan_utils.py +46 -0
- tomwer/core/utils/test/test_time.py +6 -0
- tomwer/core/volume/test/test_volumes.py +21 -0
- tomwer/gui/control/serie/test/test_creator.py +451 -0
- tomwer/gui/control/serie/test/test_nxtomo_concatenate.py +21 -0
- tomwer/gui/icat/test/test_create_screenshots_gui.py +23 -0
- tomwer/gui/icat/test/test_gallery_gui.py +37 -0
- tomwer/gui/reconstruction/nabu/test/test_check.py +92 -0
- tomwer/gui/reconstruction/nabu/test/test_ctf.py +46 -0
- tomwer/gui/reconstruction/nabu/test/test_helical.py +21 -0
- tomwer/gui/reconstruction/nabu/test/test_nabu_preprocessing.py +81 -0
- tomwer/gui/reconstruction/normalization/test/test_intensity.py +119 -0
- tomwer/gui/stitching/config/tests/test_axisparams.py +25 -0
- tomwer/gui/stitching/tests/test_axis_ordered_list.py +21 -0
- tomwer/gui/stitching/tests/test_normalization.py +27 -0
- tomwer/gui/stitching/tests/test_preview.py +85 -0
- tomwer/gui/stitching/tests/test_stitching_raw.py +110 -0
- tomwer/gui/stitching/tests/test_z_stitching.py +67 -0
- tomwer/gui/stitching/tests/utils.py +79 -0
- tomwer/gui/stitching/z_stitching/tests/test_fine_estimation.py +35 -0
- tomwer/gui/stitching/z_stitching/tests/test_raw_estimation.py +215 -0
- tomwer/gui/stitching/z_stitching/tests/test_stitching_window.py +51 -0
- tomwer/gui/utils/test/test_completer.py +67 -0
- tomwer/gui/utils/test/test_line_selector.py +21 -0
- tomwer/gui/utils/test/test_splashscreen.py +8 -0
- tomwer/gui/utils/test/test_vignettes.py +68 -0
- tomwer/io/utils/test/test_raw_and_processed_data.py +10 -0
- tomwer/io/utils/test/test_utils.py +92 -0
- tomwer/synctools/stacks/reconstruction/castvolume.py +20 -5
- tomwer/tests/test_ewoks/test_conversion.py +104 -0
- tomwer/tests/test_ewoks/test_single_node_execution.py +112 -0
- tomwer/tests/test_ewoks/test_workflows.py +160 -0
- tomwer/version.py +1 -1
- {tomwer-1.3.6.dist-info → tomwer-1.3.7.dist-info}/METADATA +1 -1
- {tomwer-1.3.6.dist-info → tomwer-1.3.7.dist-info}/RECORD +107 -10
- /tomwer-1.3.6-py3.11-nspkg.pth → /tomwer-1.3.7-py3.11-nspkg.pth +0 -0
- {tomwer-1.3.6.dist-info → tomwer-1.3.7.dist-info}/LICENSE +0 -0
- {tomwer-1.3.6.dist-info → tomwer-1.3.7.dist-info}/WHEEL +0 -0
- {tomwer-1.3.6.dist-info → tomwer-1.3.7.dist-info}/entry_points.txt +0 -0
- {tomwer-1.3.6.dist-info → tomwer-1.3.7.dist-info}/namespace_packages.txt +0 -0
- {tomwer-1.3.6.dist-info → tomwer-1.3.7.dist-info}/top_level.txt +0 -0
@@ -1,9 +1,10 @@
|
|
1
|
-
tomwer-1.3.
|
1
|
+
tomwer-1.3.7-py3.11-nspkg.pth,sha256=xeeGR3TjdoVxdFeF6T-zSwZWh6Et--EYuPWu67LxL_c,574
|
2
2
|
orangecontrib/tomwer/__init__.py,sha256=B4DXy1gY_wXmNYa2aOfapmJb2mEuCAjoaNEGnpBs70g,148
|
3
3
|
orangecontrib/tomwer/state_summary.py,sha256=5_dPzweL3r0ye4ZfJo6IV2ThJI8fQhWoO2ySdJJajj8,1711
|
4
4
|
orangecontrib/tomwer/orange/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
orangecontrib/tomwer/orange/managedprocess.py,sha256=fhI5r1xZde5QyHzu78ymywX7PHNxFRkNdQ7pRgY6rcc,4621
|
6
6
|
orangecontrib/tomwer/orange/settings.py,sha256=0aBTVBVIR441LOb-CoYCwRZ1ArB5Cq17xCiVH7cv_SA,2044
|
7
|
+
orangecontrib/tomwer/test/TestAcquisition.py,sha256=JoUAaju4Ba8cjA7C1K7B00D6mch56G4O0gKqaCIWY5w,9135
|
7
8
|
orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows,sha256=GLHvcQnR79X2sTDqIq9h4ayb3Tya7S-givzPta63ciQ,4747
|
8
9
|
orangecontrib/tomwer/tutorials/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
10
|
orangecontrib/tomwer/tutorials/append_raw_darks_and_flats_frames_to_NXtomos.ows,sha256=wjdKn-QxONdHJHiPdIuvztz0VgGEyNyDcm9ahX06aEM,5485
|
@@ -27,6 +28,8 @@ orangecontrib/tomwer/widgets/cluster/icons/slurm.png,sha256=C-YBLwXCnh0oo4nvEt80
|
|
27
28
|
orangecontrib/tomwer/widgets/cluster/icons/slurm.svg,sha256=9LqiU88NH3ACxtZ8A7gTm-C_0ACR8iq0k_N2W1IFf9Q,9790
|
28
29
|
orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png,sha256=sxH1V20s0JZPTCq82Fizz8Q9RHXwviapdStgZT8GBIM,3212
|
29
30
|
orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.svg,sha256=N22gP4exnQP5zYysfSGXIMTHh0QZmMQXjGOx2gOEpfc,56984
|
31
|
+
orangecontrib/tomwer/widgets/cluster/test/test_future_supervisorow.py,sha256=J_NqRHqYLYQLh-MLbSQABiCv-GrICBhNfIDfyN-umVs,3086
|
32
|
+
orangecontrib/tomwer/widgets/cluster/test/test_slurm_clusterow.py,sha256=j_xO1Ywzn-UmvaQbI6KWTPUU0QtDbCU27rQy-dG5V3I,2551
|
30
33
|
orangecontrib/tomwer/widgets/control/AdvancementOW.py,sha256=woHIL0VQSMDzPsli4cwOh0lxKLm7azSOG3j9xxYJdII,2460
|
31
34
|
orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py,sha256=DD5OzGS5p3bdTaoqO3YL-rPbqplsjmv13XbTAEI9LSs,8041
|
32
35
|
orangecontrib/tomwer/widgets/control/DataListOW.py,sha256=CKNPSaykTPnmgmtjNXPFMS_6HMQmsFQ3JCmqgKfM-0c,4774
|
@@ -89,6 +92,23 @@ orangecontrib/tomwer/widgets/control/icons/volumeselector.png,sha256=BIjuKaxxFt3
|
|
89
92
|
orangecontrib/tomwer/widgets/control/icons/volumeselector.svg,sha256=VWlAb73s-eZfF85-e9VjVf18LcYQjb1W7YWH9PPLE4M,10936
|
90
93
|
orangecontrib/tomwer/widgets/control/icons/volumesymlink.png,sha256=Gf9qmYvxpnGMn4BbCCTwHPfME5yfhM6FlOc5l00CGus,1895
|
91
94
|
orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg,sha256=jVIt49I_7VeN9OQF1GeSujP_KwegQD4YFmIqOA-Jv9c,5786
|
95
|
+
orangecontrib/tomwer/widgets/control/test/test_advancement.py,sha256=wI29hQhpmleY28pZJfuRFYX77GlIRkpcrqD2egqwoG8,1860
|
96
|
+
orangecontrib/tomwer/widgets/control/test/test_data_validator.py,sha256=c4x4qiwsTR3o03idEQPFWOup3p5FJ8Jo4GwIuB4NE2Q,1547
|
97
|
+
orangecontrib/tomwer/widgets/control/test/test_datadiscovery.py,sha256=rEzu29G118jfU3hzlVyVb9mHIfBVt230v0_bOWVjY-I,4798
|
98
|
+
orangecontrib/tomwer/widgets/control/test/test_datalist.py,sha256=t7AspmdkO7ht0whTn9MWY-pp0P3tHXzp_IgRw8j31_E,2458
|
99
|
+
orangecontrib/tomwer/widgets/control/test/test_datalistener.py,sha256=Xil_g5Q_ePPcPcpp1TeECajn5DhhWP_A7oHSiDwHfwc,5032
|
100
|
+
orangecontrib/tomwer/widgets/control/test/test_dataselector.py,sha256=88M43J1soUzNw4bAB9XwECrzoaC1y3PnKJmbm8MkNOA,3416
|
101
|
+
orangecontrib/tomwer/widgets/control/test/test_datawatcher.py,sha256=zC_m43D9CSpfxGFjMtmWm2hTxgPuMgBxMBHgl5fxoUw,15740
|
102
|
+
orangecontrib/tomwer/widgets/control/test/test_emailow.py,sha256=B6PBns2iaw5KZKjp5ncMl7NiKMyD-qjfj44oVgNj_Oo,710
|
103
|
+
orangecontrib/tomwer/widgets/control/test/test_notifier.py,sha256=oFbPgsqi6BftH5vT9oG_TAq61bhOiBWkLIs2osjDfkQ,1862
|
104
|
+
orangecontrib/tomwer/widgets/control/test/test_nxtomo_concatenate_ow.py,sha256=qb1DbzBH2Nwmzj26TN35-9NDHi0wSIGkFXII9JujyHw,1680
|
105
|
+
orangecontrib/tomwer/widgets/control/test/test_nxtomomill.py,sha256=7LRyebOCXt0ylwKB4_nfMGySASNsakFPswXuNV8lyWw,5399
|
106
|
+
orangecontrib/tomwer/widgets/control/test/test_reduce_dark_flat_selector.py,sha256=_Z6m0ReLn6SOVaMpNa6bajYQ9V-yTTNqXIk53T5Gf7Q,1086
|
107
|
+
orangecontrib/tomwer/widgets/control/test/test_singletomoobj.py,sha256=F-vu5AfMBuL6GKwRqkgkuW0mOXenQ0Clgvbb27cdpT4,1191
|
108
|
+
orangecontrib/tomwer/widgets/control/test/test_timerow.py,sha256=uZrbWYnQ4BMMxCN9n56YcLUtYtBvjKSec-OCUXmmWcg,1841
|
109
|
+
orangecontrib/tomwer/widgets/control/test/test_tomoobj_serie.py,sha256=8bBGEr1rDSPCMcWpxNcqYJwnyK3RLhpsVShNgcb_ONs,3573
|
110
|
+
orangecontrib/tomwer/widgets/control/test/test_volume_selector.py,sha256=-AY-VwmYMkX6oy4uDjAwRZ68ClSkKvE5Ou9Lt6eHX0U,2414
|
111
|
+
orangecontrib/tomwer/widgets/control/test/test_volumesymlink.py,sha256=CAHUHgbzAwp-f-EaocgRE3146qCt1jrFL66YzbiCqgY,1958
|
92
112
|
orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py,sha256=L04zRJVSqfesCce5lfDdQiGbioWfQK8gJN5DP7FThWc,6374
|
93
113
|
orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py,sha256=oZKqVw4GXTWfnvx_zFHuoi6kbryvG9m8dDVDzSXap5U,2436
|
94
114
|
orangecontrib/tomwer/widgets/debugtools/__init__.py,sha256=yYF1v2MWP4g1uXZOw3qPPvDnX8KKzauVTRit6fJ9MWM,1553
|
@@ -96,6 +116,8 @@ orangecontrib/tomwer/widgets/debugtools/icons/hammer.png,sha256=5z_sXTWfAMCYhKbv
|
|
96
116
|
orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg,sha256=7uovCO-33EP_A6sjGzQMkvF59hdF_Aj1hzr5yIAfDjk,3191
|
97
117
|
orangecontrib/tomwer/widgets/debugtools/icons/inspector.png,sha256=sNTPrEEDGQHwU-O6hXBZfdmXeUWUarZPsL3s6l9opSE,1020
|
98
118
|
orangecontrib/tomwer/widgets/debugtools/icons/inspector.svg,sha256=GPx4Xoo8dZGr0Ea6O_2YXcTh5Vg6Lzrh86uf6iG5opQ,3943
|
119
|
+
orangecontrib/tomwer/widgets/debugtools/test/test_dataset_generator.py,sha256=yKEbHUqeJ-t8_FGpZNnjvPi1RvUjPuhw2ulvlycfjFM,2062
|
120
|
+
orangecontrib/tomwer/widgets/debugtools/test/test_object_inspector.py,sha256=qkDcASVXmIbW32Cwyd9KCpJwN-_dEnuNi8od61Pzkx4,2197
|
99
121
|
orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py,sha256=fRN66mig0NgVz_brLiiZE0bpn_n2YqfWVXj2f0B5ytE,6399
|
100
122
|
orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py,sha256=hwSZssH3LuN9Z1BoaSPcROSyCmLJRw_ne8K_Piy3pAU,4467
|
101
123
|
orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py,sha256=Uhn4GXxZ2RZADZrJk7poyp6-_pvUpJTUMyQYWZmlP8g,4820
|
@@ -149,6 +171,7 @@ orangecontrib/tomwer/widgets/other/__init__.py,sha256=7Ca9kD-HBAYOI72go7FckSGSeB
|
|
149
171
|
orangecontrib/tomwer/widgets/other/icons/PythonScript.svg,sha256=-8O2mNwRmyVdFvpcJsXLlOPcn50Sbv_qFHet1IF9T6A,5501
|
150
172
|
orangecontrib/tomwer/widgets/other/icons/hub.png,sha256=wnKSaxw2WnBkSQjI86aLZfdmKvV31Vputq1zukQIrXk,1122
|
151
173
|
orangecontrib/tomwer/widgets/other/icons/hub.svg,sha256=9EYoBKY-P-cO17nM48OPA9VDZSCbyGtrMRc80BGHflk,3735
|
174
|
+
orangecontrib/tomwer/widgets/other/test/test_pythonscript.py,sha256=pqllpHnX8WDo37lBs1DawHdLL9QE6YpqTvnGYKu6LIs,941
|
152
175
|
orangecontrib/tomwer/widgets/reconstruction/AxisOW.py,sha256=ffbMYzHWALir19bZhpXjYIgMfJjyyaeov9Uxp5tNyGs,22342
|
153
176
|
orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py,sha256=Ev-TrwZ-HxmdMfZMsz512vhCOgXpGImVsdNdlPSnQIM,9604
|
154
177
|
orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py,sha256=DyjkZ3RDgUvEkK3yR8qCWQq9eaVus8I-64nvhrHN1ZQ,10988
|
@@ -185,9 +208,23 @@ orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.png,sha256=JJYo295
|
|
185
208
|
orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.svg,sha256=gQQFb5Uj2Vr8UPVtRGqNBz-aQWc5DcDvpSMGwv8VANE,14712
|
186
209
|
orangecontrib/tomwer/widgets/reconstruction/icons/tomogui.png,sha256=qg7SZMRY3QjK-tteyoN0ToU5gNs1ZflkwzUK5kVVVQI,6846
|
187
210
|
orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png,sha256=M9IWm_TDKlSA6PZ-FPblo2k6PH-kkT2d0ASRvZ-pM_8,8992
|
211
|
+
orangecontrib/tomwer/widgets/reconstruction/test/test_axis.py,sha256=S4BpDER-fTtJA5Vk3BYmsbLsVpV6b1LpokwJifc8Z1M,8206
|
212
|
+
orangecontrib/tomwer/widgets/reconstruction/test/test_cast_volumeow.py,sha256=fFuA8f9XSJ3flJEOi_4aqeUkZUXHRTNAoHYBRJTwB34,2936
|
213
|
+
orangecontrib/tomwer/widgets/reconstruction/test/test_dark_refs_widget.py,sha256=qCiY4Gm_z6OsoLjVDLpHv4W1zCYNiBDT5QSCvLPzrOc,4925
|
214
|
+
orangecontrib/tomwer/widgets/reconstruction/test/test_delta_beta_selector.py,sha256=BJcjGemqzqwjqBVVCMLB_ASDWGtAyQUO6cl4m2N9m2E,407
|
215
|
+
orangecontrib/tomwer/widgets/reconstruction/test/test_i_norm.py,sha256=y5LZg_M5ES50s-Wyppw8jJaH5ci5l4b3ngibHlDRx2w,7866
|
216
|
+
orangecontrib/tomwer/widgets/reconstruction/test/test_nabu_helical_prepare_weights_double.py,sha256=XSaLc4yNjutEp1yRbP4RI7Ii8uB2PjPGJDcuvx_V2gY,591
|
217
|
+
orangecontrib/tomwer/widgets/reconstruction/test/test_nabu_volume.py,sha256=G3yBm2iNrgt3CjI2cxJpsa2o-lPliFV-QdoYDCHA-C4,3621
|
218
|
+
orangecontrib/tomwer/widgets/reconstruction/test/test_nabu_widget.py,sha256=_yhT_ih0VIBsm2OdLObuZgjpLf38ILXvzn7pOTtxdl8,3780
|
219
|
+
orangecontrib/tomwer/widgets/reconstruction/test/test_sa_delta_beta.py,sha256=3zoCu0QYapnemEmQ5J0d-iG2MderB8_afxsHgiJCLFc,6222
|
220
|
+
orangecontrib/tomwer/widgets/reconstruction/test/test_saaxis.py,sha256=E5q5WiNJ9o8B-VDpa3pp1YyqH4nS1JN4eXFs7JsM4ZA,7514
|
188
221
|
orangecontrib/tomwer/widgets/stitching/StitcherOW.py,sha256=j4UQPKYlGVcp2b5C9qntenKUltc9z-nMopjdE1SZMpw,2351
|
189
222
|
orangecontrib/tomwer/widgets/stitching/ZStitchingConfigOW.py,sha256=JEk7ZnSYfFtg1ETbpdIhDPFOcOjfegJdvjc3cIZZISM,3252
|
190
223
|
orangecontrib/tomwer/widgets/stitching/__init__.py,sha256=TaJoeu_wSmquWmI50AzI0Vo5b3SbhxupWHtltIA_8t0,262
|
224
|
+
orangecontrib/tomwer/widgets/stitching/test/test_zstitching.py,sha256=h-VuhoH_PLuRRIAI9JXQU7YseX4voG44-PMmaxvvuNg,11221
|
225
|
+
orangecontrib/tomwer/widgets/test/test_conditions.py,sha256=0yCV4-ekXVJpYr_pomRvpQQcpR72EBRZn8DktAwVEK0,4189
|
226
|
+
orangecontrib/tomwer/widgets/test/test_darkref.py,sha256=mbjdMtgocQJX5SLDUypvIPmDZW6IIyGRbN91sqkPubY,9505
|
227
|
+
orangecontrib/tomwer/widgets/test/test_foldertransfert.py,sha256=21_Rmi6UMqEHN2FSCd-BMD0bPZLK2u5MhxBa3CA4NZo,4693
|
191
228
|
orangecontrib/tomwer/widgets/visualization/DataViewerOW.py,sha256=YBg0R5sutIN0ur-OsF1zJb-byoDVe3U_kNojRujYm2E,5382
|
192
229
|
orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py,sha256=zxFyzjW_oyaROdlk8b_rBWhuGm6U1ihPHGUF3Oo1XPo,2855
|
193
230
|
orangecontrib/tomwer/widgets/visualization/LivesliceOW.py,sha256=9U_iG80L1lI5tYpzan9BlIr9sN4H8SKEQqULicPjEQk,3145
|
@@ -217,10 +254,19 @@ orangecontrib/tomwer/widgets/visualization/icons/slicesstack.svg,sha256=SukBd6YH
|
|
217
254
|
orangecontrib/tomwer/widgets/visualization/icons/tomwer.png,sha256=M9IWm_TDKlSA6PZ-FPblo2k6PH-kkT2d0ASRvZ-pM_8,8992
|
218
255
|
orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png,sha256=8XwGE5maqQdjmU7_EWcqiuOG7xsf7ycNUJ_40UvpYeA,4372
|
219
256
|
orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg,sha256=2uT9_px6VBxkC6RxD0QrQVzcBusDlNVKwekh551EF0A,8454
|
257
|
+
orangecontrib/tomwer/widgets/visualization/test/test_dataviewerow.py,sha256=RIVO0ZAhxY8BAOyKOx6JgHGZn3QQp8HVr2IfNQtWmig,2853
|
258
|
+
orangecontrib/tomwer/widgets/visualization/test/test_diffviewerow.py,sha256=H0QEkQxMFJUC7z5QhBloQeU_dJY_j1iKFeh5eVnKHcc,2308
|
259
|
+
orangecontrib/tomwer/widgets/visualization/test/test_live_sliceow.py,sha256=SgMuliMhiRd10drg5L0wvuxab05_mzmutngKYZ3tBv4,2248
|
260
|
+
orangecontrib/tomwer/widgets/visualization/test/test_nxtomo_metadata_viewer.py,sha256=8R7pXWTOYLII9Pk9PIV1yD17HxS3fuTWM2SxdJnv3zI,862
|
261
|
+
orangecontrib/tomwer/widgets/visualization/test/test_radio_stackow.py,sha256=hYOP2BtLueIlL95Da381o27uJq8tMClxuhHvdVsUx6Y,2090
|
262
|
+
orangecontrib/tomwer/widgets/visualization/test/test_sample_movedow.py,sha256=l0RUfAN0X1MLwJnMVuHKnCHzasa_KaYer604-jWZNH4,2546
|
263
|
+
orangecontrib/tomwer/widgets/visualization/test/test_sinogram_viewerow.py,sha256=is7MK5EQv29eOJoH845OXaGTxoSQom9dBTX8N_KHoQs,2108
|
264
|
+
orangecontrib/tomwer/widgets/visualization/test/test_slice_stackow.py,sha256=-4-7_DX0Q1jxv-UOstHoh1e8NZuHbdS4HpYuBHnYqps,2126
|
265
|
+
orangecontrib/tomwer/widgets/visualization/test/test_volume_viewerow.py,sha256=uEdBP6eRDF9sfq6UyoOvAQRdheoCZKBDp1mIbv7reZg,2132
|
220
266
|
tomwer/__init__.py,sha256=82Jp1abyG4UWdGuT4nNU7LxaUV6xxkOte5pIz3w69Do,1745
|
221
267
|
tomwer/__main__.py,sha256=jsDfWA2yl5am0dHQVkYwlKLxxqKNont6VDF-LusuawE,8575
|
222
268
|
tomwer/utils.py,sha256=EgVwJ5CQVjoBvcKNwyVoXv_P4ciI11oxb8fNyy82Lck,8465
|
223
|
-
tomwer/version.py,sha256=
|
269
|
+
tomwer/version.py,sha256=RRuijUH3o_ao8WDg9vHs18VCkJJl8bR2NN8z_P2lGsA,4386
|
224
270
|
tomwer/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
225
271
|
tomwer/app/axis.py,sha256=Ax0wlTp9u0Ll_3ax23QP5Ck16_M9Kop7wx0hAbXrXyM,6004
|
226
272
|
tomwer/app/canvas.py,sha256=RbQqgE7DuNjv4nGG6BNfnSevQO5_lCl7N71hGcLoxwE,1561
|
@@ -261,6 +307,7 @@ tomwer/core/cluster/cluster.py,sha256=6xFJ4jpz7qtyrCvoQZ50h-WPu3O_1mYY-5TBQVGWtw
|
|
261
307
|
tomwer/core/log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
262
308
|
tomwer/core/log/logger.py,sha256=KDHLUbaVx3hOuIk8WmzS61x1IkYgAZJ97nVYUI5-PTU,4099
|
263
309
|
tomwer/core/log/processlog.py,sha256=0XmoKVUpHjxvaOFEi56eqF1edHPzCfsCmjdMMZP2sxs,3697
|
310
|
+
tomwer/core/log/test/test_processlog.py,sha256=BzN8S0A-CjCVCXSVdWMKbEBufsmTwo4A0HDAAvWHGf0,1738
|
264
311
|
tomwer/core/process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
265
312
|
tomwer/core/process/output.py,sha256=UmOczI3GYNXm79B_1B3DInrXZqerhMF98Hru4KcgP1o,1562
|
266
313
|
tomwer/core/process/task.py,sha256=3_AuZGwUoLLUw5B8ZwYt0cDFeZ_g1VtTBta573tiODQ,15703
|
@@ -301,12 +348,16 @@ tomwer/core/process/control/test/test_volume_link.py,sha256=GxvgFLLSQqi7O1nz-8xb
|
|
301
348
|
tomwer/core/process/edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
302
349
|
tomwer/core/process/edit/darkflatpatch.py,sha256=Ag2RTdqo5MmXFeCUfhWelHV_MwJ4rK31-Jj4ACUwMeg,5239
|
303
350
|
tomwer/core/process/edit/imagekeyeditor.py,sha256=P2a-c512HLPlE-64Qd_obBgTim2fS8TSlBzpq-6E-k0,9398
|
351
|
+
tomwer/core/process/edit/test/test_darkflatpatch.py,sha256=OBLtcAxn3tGcyqEO7NJWy250747rRtZFRFeihvP6O-4,10710
|
352
|
+
tomwer/core/process/edit/test/test_imagekey_editor.py,sha256=PY_PB4KIAdNWwR0GwXRUCZxAjm6ztUYB-M0m7KyZ1i8,3668
|
304
353
|
tomwer/core/process/icat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
305
354
|
tomwer/core/process/icat/createscreenshots.py,sha256=JeAhnaeqJSa51ssrzXQUJFh37cLBA-CAVr8PFfc3saU,3677
|
306
355
|
tomwer/core/process/icat/gallery.py,sha256=c_6-KU213bFOK3jKXOVkroGfL0ppzY9o7nFdZHN8ws0,14813
|
307
356
|
tomwer/core/process/icat/icatbase.py,sha256=pNokee8Zbhkyq9tV8Ql6UGZ8CyoFaP7lUhq4qVoBKis,1066
|
308
357
|
tomwer/core/process/icat/publish.py,sha256=kmPYdGR9TMoXR43frxZdNnYY-O5iJYE9n526ZCysXWw,7828
|
309
358
|
tomwer/core/process/icat/screenshots.py,sha256=OaXq_WFAdC_fuAj8qpHXUnkvexMyZnqcabJqNoive6k,816
|
359
|
+
tomwer/core/process/icat/test/test_create_screenshots.py,sha256=Y7_uDGWlkRRLp7hTi75VxIyvJOupo8P4IPdj-55Z0dk,2927
|
360
|
+
tomwer/core/process/icat/test/test_gallery.py,sha256=RAWElYrfpTlFt49mJ1VyvF78AxHjJ8xOcHMDpbwSX5A,5916
|
310
361
|
tomwer/core/process/reconstruction/__init__.py,sha256=EgySFx4vfoPre5NwYZbKoWSMx-3lBYXWlAI-b-ttRu4,1504
|
311
362
|
tomwer/core/process/reconstruction/output.py,sha256=JxtQ-ky2rPjTet2kYtIlzqnfj9E7BhZh3NaWOosobE0,3967
|
312
363
|
tomwer/core/process/reconstruction/paramsbase.py,sha256=YhCqZwZCM632WdLlLHJVEwBHnXwbBf7CoLA3jESxOFE,7725
|
@@ -332,6 +383,9 @@ tomwer/core/process/reconstruction/nabu/plane.py,sha256=Cgzth77M0pFgLDULmvmPj4bq
|
|
332
383
|
tomwer/core/process/reconstruction/nabu/settings.py,sha256=JpHKf0smiXeWC8i9Mj7h3g67teJ3Gqycd-Uwg2yzGOQ,2279
|
333
384
|
tomwer/core/process/reconstruction/nabu/target.py,sha256=_Z4gViprjR3Vm4KASqsASStLA9GM1wTyoi3Pg0PUSeg,1481
|
334
385
|
tomwer/core/process/reconstruction/nabu/utils.py,sha256=gRs1fEw4qmNyf7R4j9XMo6IK7Y5q3NlkDeh6w2UAelI,17950
|
386
|
+
tomwer/core/process/reconstruction/nabu/test/test_castvolume.py,sha256=JIFaWVnY8-rP8d6KLlhxV4uT9wlkyl-JA3WKAqWmsUI,5177
|
387
|
+
tomwer/core/process/reconstruction/nabu/test/test_nabu_utils.py,sha256=1xI_lXjUXjN9xRNIOHPc0zx8tR4j5f2dZmDFRTrA1c0,10167
|
388
|
+
tomwer/core/process/reconstruction/nabu/test/test_nabunormalization.py,sha256=Pq0KJZgR1QTJwzTRDHT5cz-xgX2vAaMkIPqlDfm3Qss,7279
|
335
389
|
tomwer/core/process/reconstruction/normalization/__init__.py,sha256=TDtATpMVFkEOT93wLXLpW0A_TOeiQDiM7AWAqX4FIB0,119
|
336
390
|
tomwer/core/process/reconstruction/normalization/normalization.py,sha256=G-eAZIct47RvzvHNMbKsG4Dt58vTSKhvH-NnIMzxzOs,13210
|
337
391
|
tomwer/core/process/reconstruction/normalization/params.py,sha256=porWC6G5lQWF-4JB03B56uGmuMxjx3u0ZMums-Bh2p8,4790
|
@@ -356,9 +410,11 @@ tomwer/core/process/reconstruction/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
|
|
356
410
|
tomwer/core/process/reconstruction/utils/cor.py,sha256=HeaZRYXPtfpJJ03HSw6Orb2KIcQtVpWZmSBKvkOojBs,368
|
357
411
|
tomwer/core/process/script/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
358
412
|
tomwer/core/process/script/python.py,sha256=25Rv5IordH6AVJFTMBrBGAIRFDkJHf0CVtkqPcnqMJs,4028
|
413
|
+
tomwer/core/process/script/test/test_script.py,sha256=8QIE96EjeoxSMiN1kSExKcCPS16p5rF-GXvG0l9djK0,2348
|
359
414
|
tomwer/core/process/stitching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
360
415
|
tomwer/core/process/stitching/metadataholder.py,sha256=8HbHrHVADc8XhLIDL3BSmT2Kh-iVGpZrvEclwQfKg7U,6527
|
361
416
|
tomwer/core/process/stitching/nabustitcher.py,sha256=Pho6tm36qlzy2SEaKEf2EcglMBxrThD8PEhrp0_g1ok,6781
|
417
|
+
tomwer/core/process/stitching/test/test_metadataholder.py,sha256=E9jgvtwdbcF9tgWS3uqHppHf8ff0aCvjROrLAFVZSpQ,631
|
362
418
|
tomwer/core/process/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
363
419
|
tomwer/core/process/test/test_axis.py,sha256=So1e1WnVuhvFCv5wT5dftZ9JFsVsc8uR0Qe7QAQWlQE,11810
|
364
420
|
tomwer/core/process/test/test_conditions.py,sha256=7yKYB_Bg6dQqblA3lGD4eESegDX6MU2AzmUahWTzmdI,3464
|
@@ -379,6 +435,14 @@ tomwer/core/process/visualization/samplemoved.py,sha256=NHaUrdzpZm3MiRksbcJYwmA8
|
|
379
435
|
tomwer/core/process/visualization/sinogramviewer.py,sha256=VPkea5-DiVv_fCvg_UqBoCACtdnHEvA7yXLNPzp88Xo,1569
|
380
436
|
tomwer/core/process/visualization/slicestack.py,sha256=0388rNQBDu_ihJ_vGT7EtwiGPlHf-yJDVBK8VCLXsEo,1625
|
381
437
|
tomwer/core/process/visualization/volumeviewer.py,sha256=h2_LOfx0PNJaBK0cyUDniuV1Gf7FwLsHwU3jFaAbOow,1579
|
438
|
+
tomwer/core/process/visualization/test/test_data_viewer.py,sha256=64xKeIB8SpRMXNctCagUkgW8N5Y8SsG_B4atXO6TP1Q,1596
|
439
|
+
tomwer/core/process/visualization/test/test_diff_viewer.py,sha256=vzx3ZwIQvS8V72ec50m3KeILJ_rWf3KqKNAmeDWnrRY,1596
|
440
|
+
tomwer/core/process/visualization/test/test_image_stack_viewer.py,sha256=6EZ9X9kS_ig2VkuBOh72AZRnxoLO0h6SIsSe07WLg74,1630
|
441
|
+
tomwer/core/process/visualization/test/test_radio_stack.py,sha256=FmqTqSbJkRB2pVdHVGi3j5BvyB7VZmQ44s8eUdB4OBE,1596
|
442
|
+
tomwer/core/process/visualization/test/test_sample_moved.py,sha256=JQ9VqoYJW5LApUQfg6pgB-yb43_bQo-LECVtPJzEP0c,1624
|
443
|
+
tomwer/core/process/visualization/test/test_sinogram_viewer.py,sha256=W7TsXSmsaKOTzFFycMB47DB_WLD0GQ4wSNg2ZlgfG70,1612
|
444
|
+
tomwer/core/process/visualization/test/test_slice_stack.py,sha256=YRr1GmQVtkOmS1hUnRTONmUV_SHTU-xb9T5LO7NGGKc,1596
|
445
|
+
tomwer/core/process/visualization/test/test_volume_viewer.py,sha256=34fdMWvPqvAIkK-zA63lod8xGWAI1XU7PdVRiXtcMDg,1604
|
382
446
|
tomwer/core/scan/__init__.py,sha256=V1TPi41mS3b6jskdiNqgnKYvRHZg1x1KmEClQ3hUmu8,1392
|
383
447
|
tomwer/core/scan/blissscan.py,sha256=yfJaoYGeEKehZwKj1sfdzXU7rohxm5mbOdaORXIRI7o,8244
|
384
448
|
tomwer/core/scan/edfscan.py,sha256=_J6NyqXkMcrD6NirLT-TmI-Le2UpdV8uy8XOmrdu9AM,22892
|
@@ -418,6 +482,10 @@ tomwer/core/utils/spec.py,sha256=QwtoyYkhi89t5IhrR-gbQ-Po5JByyD2HxOBMgdXwFUg,756
|
|
418
482
|
tomwer/core/utils/threads.py,sha256=_JO6WEbdJo74ZhrFpojM2pVgDmenejump7a568fFu2E,3189
|
419
483
|
tomwer/core/utils/time.py,sha256=7WZUZsLu2nFIdpLBYysuuNIILGzo_UliSbkJ1R67BV0,1845
|
420
484
|
tomwer/core/utils/volumeutils.py,sha256=KE8-zW2brpHov8Ak__nrbUxtuTKi2Hrop3SRfD4bj14,490
|
485
|
+
tomwer/core/utils/test/test_image.py,sha256=cvOdQ_RO2ACU9-FyuovxEpRBolLGpuBa6wThw6i6EBw,899
|
486
|
+
tomwer/core/utils/test/test_nxtomo.py,sha256=q0KGRWj98wLAsoIB2lb2R8O_lv4xhUWsePYU7sfzxGg,2543
|
487
|
+
tomwer/core/utils/test/test_scan_utils.py,sha256=QpAQR4B6rqcsiJF_jlyPK-_XQHld8UVuHRCREFVJdrQ,1452
|
488
|
+
tomwer/core/utils/test/test_time.py,sha256=kHoqMO7p58YXZDYwSRw0hg1NlTmXBNSdAQLxGbUVYjs,104
|
421
489
|
tomwer/core/volume/__init__.py,sha256=D8bAkLObITdTShXEk6pFt3I56zzccxDQs5KJmTyiXY4,253
|
422
490
|
tomwer/core/volume/edfvolume.py,sha256=YPYxGXWm9EXsxaL732PnHaskLKKbODkmyRi-hYZPcTw,3713
|
423
491
|
tomwer/core/volume/hdf5volume.py,sha256=ZeyKgUTA8YE9vCQo82Aq9x45Rk40Rtx34JZ_JigMhv8,4401
|
@@ -426,6 +494,7 @@ tomwer/core/volume/rawvolume.py,sha256=Eaj9Fk1BeQS4QGbfjmPExUO2oKhDgvDcaoVBqdxOU
|
|
426
494
|
tomwer/core/volume/tiffvolume.py,sha256=n1bi6VU3Jsf40zMOCH-W_vdg_WhyymWEpXPjNQVYKxg,6040
|
427
495
|
tomwer/core/volume/volumebase.py,sha256=TW-zA3GMYe-keZuv-HXEfyYAQKgG1lGlno9_LHYCL3E,1539
|
428
496
|
tomwer/core/volume/volumefactory.py,sha256=sf9Mok3EG7a43OTrLAKnRw37TG_22FXY9rruX2KyiEw,7979
|
497
|
+
tomwer/core/volume/test/test_volumes.py,sha256=3nizQCB__xTWCQeZ9MhsG9R5V3e5URqQIcBWVKx9FkQ,781
|
429
498
|
tomwer/gui/__init__.py,sha256=GuoK-CFwHqHBiLvvSUOAk6_SaXu7-k3SIYCfPTZFHFk,1474
|
430
499
|
tomwer/gui/icons.py,sha256=r_UURvOe36k83iw5gQiEKt6fgdvPNbZgrUoeji_s6eE,12917
|
431
500
|
tomwer/gui/illustrations.py,sha256=kKA_Jnj67QwwjHXW1d5x1qOgV2QWlktvEJYIDFTSJ-0,5368
|
@@ -474,6 +543,8 @@ tomwer/gui/control/serie/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
474
543
|
tomwer/gui/control/serie/nxtomoconcatenate.py,sha256=YyJssAnQauRhQ1jBg63uj1pXcdo2IsktebaQvpgx8YA,3131
|
475
544
|
tomwer/gui/control/serie/seriecreator.py,sha256=Rcz9J5_N3Kj05W4bHMvcL5CPE-bWfFCqfdYtsF-u7p4,35110
|
476
545
|
tomwer/gui/control/serie/seriewaiter.py,sha256=N8gDWBDDIh17CFlxc1NljmYrVbLMGqZ8RCJUuEdnZt8,1374
|
546
|
+
tomwer/gui/control/serie/test/test_creator.py,sha256=UA_sEHjdpaeB30A0cCAa_VtcbZ0y8C06kRmLriBbZAc,15551
|
547
|
+
tomwer/gui/control/serie/test/test_nxtomo_concatenate.py,sha256=jkIN5tulCvtxgxuE2a54jiN4H_NT8sPOcjeUiJe8HiE,668
|
477
548
|
tomwer/gui/control/test/__init__.py,sha256=OLK9ip_LryBfM_L40MReqjvJS3wdbWP_CpnBeD1NQTA,1368
|
478
549
|
tomwer/gui/control/test/test_datadiscovery.py,sha256=7xI28TRiWdS4R5YE2rskOqZYkWgID80BYEo14TnX8Dk,775
|
479
550
|
tomwer/gui/control/test/test_datalist.py,sha256=04UdTvOTHZt_YYDvwN0z8k6UpvDAddGHCUrl9-CicoA,3508
|
@@ -504,6 +575,8 @@ tomwer/gui/icat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
504
575
|
tomwer/gui/icat/createscreenshots.py,sha256=IeKBF-urVsEsjDH2gXpt3oG5Sx_OstC1mNJB7zFeWkk,3123
|
505
576
|
tomwer/gui/icat/gallery.py,sha256=puBAkqlwgV1Orki_g2IVXjssCn_PCPjNGJtC0RIPpxI,8700
|
506
577
|
tomwer/gui/icat/publish.py,sha256=E1DwyABMZeIHDcy88YFtLpg2GpvN_AFHn4aAJbcK13c,6220
|
578
|
+
tomwer/gui/icat/test/test_create_screenshots_gui.py,sha256=vqbW6Jj8HntsG5nwa0EyOfV3BFdOGaUUNEoPV043A7o,708
|
579
|
+
tomwer/gui/icat/test/test_gallery_gui.py,sha256=91lEJ3Hqdx3NHf3x-XNieohmCPSPWHQdAk7m8qvQ1h0,1068
|
507
580
|
tomwer/gui/reconstruction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
508
581
|
tomwer/gui/reconstruction/axis/CompareImages.py,sha256=mrlXPCgq71lzmA_XACqrjdzRTK1iYJQBMrJMaeKZAq8,12870
|
509
582
|
tomwer/gui/reconstruction/axis/__init__.py,sha256=fUKWiRiG2o4Y-9RN-41VZMMM8L9Srl6QCn942VL5szY,94
|
@@ -528,8 +601,13 @@ tomwer/gui/reconstruction/nabu/nabuconfig/output.py,sha256=RWd1yO4tbCoqktYozVMaR
|
|
528
601
|
tomwer/gui/reconstruction/nabu/nabuconfig/phase.py,sha256=5bGZI4fW970hCd5bTHWBYPNHZ7MU5--nasF_uD3qi0Y,15368
|
529
602
|
tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py,sha256=-MMPCPT-xdwaIvgU0uW6H-MH_Bwr9ef2Oq8rfY-MQKA,30942
|
530
603
|
tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py,sha256=wFjJiHGe8XZFuTeF0EefgIYfPWZJEj6bsBLC6MPjNNs,38981
|
604
|
+
tomwer/gui/reconstruction/nabu/test/test_check.py,sha256=0ShclP_S7Mk0Ch9ET7lKy-ux5_hsW0GH4UF0WOHm8hA,3641
|
605
|
+
tomwer/gui/reconstruction/nabu/test/test_ctf.py,sha256=uiJznrY6ScH51xaaSUFfplg9XJcFacczIV8_7k9tuRg,1554
|
606
|
+
tomwer/gui/reconstruction/nabu/test/test_helical.py,sha256=6vB_xXJOuNPHbXKLw8JWUtl-BB-Ntm8xkNEMV08ocEM,754
|
607
|
+
tomwer/gui/reconstruction/nabu/test/test_nabu_preprocessing.py,sha256=OcTJ6-GQrIMETlezvJ7HlWE7_eWMKdfbfueohl_lZ-c,2258
|
531
608
|
tomwer/gui/reconstruction/normalization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
532
609
|
tomwer/gui/reconstruction/normalization/intensity.py,sha256=GWFPxsRxDxFnUwCh4zEDKccjt5Mmnl9WWZYa5wte0Ys,33856
|
610
|
+
tomwer/gui/reconstruction/normalization/test/test_intensity.py,sha256=WkhodBzsJ4K58q0FLftXMc3dEXn37fxhMO-gem6_JU4,4752
|
533
611
|
tomwer/gui/reconstruction/saaxis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
534
612
|
tomwer/gui/reconstruction/saaxis/corrangeselector.py,sha256=dxA10buj6yX3zFIHbAwsLqYdlXYsWa0NgBZyrKoTu2Y,32888
|
535
613
|
tomwer/gui/reconstruction/saaxis/dimensionwidget.py,sha256=NtLK3yec9yqW5IITWik-g_KYbk0Qkx9ctLjjb6gsFEc,9750
|
@@ -562,8 +640,18 @@ tomwer/gui/stitching/config/output.py,sha256=OAgP2TB-mcm53CejqY5r_6n1sLoamk8zDui
|
|
562
640
|
tomwer/gui/stitching/config/positionoveraxis.py,sha256=Z7UO_lQn52zKN46c7sUD9wzCyC-WcMtE3RyJeW0uqPA,6834
|
563
641
|
tomwer/gui/stitching/config/stitchingstrategies.py,sha256=9cZvTjUeId9scbCSlCs8tg9ZNY9fQPdRty86D22SZGg,4257
|
564
642
|
tomwer/gui/stitching/config/tomoobjdetails.py,sha256=IUIN_mhpCpod_ye3QWqqQvCxaRMIuR0FzloAFgXuDEE,14680
|
643
|
+
tomwer/gui/stitching/config/tests/test_axisparams.py,sha256=btumHdTFr2xmiFZ-GbWAuRy6kjwYUilMrluhiE0repM,738
|
644
|
+
tomwer/gui/stitching/tests/test_axis_ordered_list.py,sha256=3L36K4Ohn3SNJ3EJKFVkm1gR0G52eX0SJWGcny5ua0M,693
|
645
|
+
tomwer/gui/stitching/tests/test_normalization.py,sha256=m4anggtaZ32JSfZ5yHgis5CD0HYpjLvS6bpDitQv9ec,643
|
646
|
+
tomwer/gui/stitching/tests/test_preview.py,sha256=t5sVGXoq6ysghnxzviJOQD__7bT-UP_iRSFhTLb70UI,2983
|
647
|
+
tomwer/gui/stitching/tests/test_stitching_raw.py,sha256=Yh69Av36GMJdpxstaMGprjRogugh7jicSTgC2pSaSBs,3699
|
648
|
+
tomwer/gui/stitching/tests/test_z_stitching.py,sha256=HCeqpWlQ4d0uH5LMAQn3uRYMytsbk0dx_PwD7pwO-Tk,2303
|
649
|
+
tomwer/gui/stitching/tests/utils.py,sha256=lVtzonI60piGBgu5ungoxMcPhAzL1kQIcyc8DeLBw7Y,2677
|
565
650
|
tomwer/gui/stitching/z_stitching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
566
651
|
tomwer/gui/stitching/z_stitching/fineestimation.py,sha256=pCogcIZr_qGqjNjgzTq-G1uL4Lpd7wOSyFLYEVSh1aM,8931
|
652
|
+
tomwer/gui/stitching/z_stitching/tests/test_fine_estimation.py,sha256=vHR8e2jvq_mlV6621DDSMpVZ5khNhsfbTplCBgtGf_k,1207
|
653
|
+
tomwer/gui/stitching/z_stitching/tests/test_raw_estimation.py,sha256=K1vIqq9umG2VO4N6TDRpkLUGFl4S6R4Odq1N7CaEzoQ,8338
|
654
|
+
tomwer/gui/stitching/z_stitching/tests/test_stitching_window.py,sha256=dI-j9yqgfHHVlGo2GHNQ7KVbJyIgKJXzukvS0-ww35s,1433
|
567
655
|
tomwer/gui/test/__init__.py,sha256=ni87cKf-CzKIuVQTqj9VSUG-AcDN7ochWSfH-TC5-20,1368
|
568
656
|
tomwer/gui/test/test_axis_gui.py,sha256=UGA38dq9dED2CDbwUXr0AmDcIvwhZLr1z38zfbGHZNM,1447
|
569
657
|
tomwer/gui/test/test_qfolder_dialog.py,sha256=m81GSra0Vev88fea5UGoU1HWOoFYmgSQxIw-wZpsexk,347
|
@@ -586,6 +674,10 @@ tomwer/gui/utils/vignettes.py,sha256=ZsgOcIHLTcoT45eaPeUfH5nSnhbHae2x14uWP_m-UW0
|
|
586
674
|
tomwer/gui/utils/waiterthread.py,sha256=XEp6CRQt4aHCuyS2C6ZeQIMWESGilbuhaJjm9CzQQMs,1844
|
587
675
|
tomwer/gui/utils/lineselector/__init__.py,sha256=GZ847ef5X2wk_sAHxg6h24TarPYmb4NZjQI3jjkc7jE,75
|
588
676
|
tomwer/gui/utils/lineselector/lineselector.py,sha256=R-RhrTQj1wTPylD0D9MKNzM6voJx-O-z4nhIVwMqj5M,8179
|
677
|
+
tomwer/gui/utils/test/test_completer.py,sha256=XkouGMCfTElOLQM7QkL9NTsliNp7wNnI7qad-obQkdY,2458
|
678
|
+
tomwer/gui/utils/test/test_line_selector.py,sha256=42EbSc81A6uYwTixuZr0R4pexAX3fMU0LdKqgM0SIM8,618
|
679
|
+
tomwer/gui/utils/test/test_splashscreen.py,sha256=sJZzsvJ1-VpNuQ2wifRz4a6PbU7rZQVXZzMVMGYpZ0A,253
|
680
|
+
tomwer/gui/utils/test/test_vignettes.py,sha256=xgTmE7QB5db12Wqe32v5zA7hx0PtE5bqQbHtStVzerk,2265
|
589
681
|
tomwer/gui/visualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
590
682
|
tomwer/gui/visualization/dataviewer.py,sha256=X632o237-0cW4gWTIXajA_vkOW9STchEbEY8VEZdM-A,27024
|
591
683
|
tomwer/gui/visualization/fullscreenplot.py,sha256=ptLrhF8DUsYNMj-KDioe9Y-KxnOzqepGlS8K2A2hjck,3639
|
@@ -613,6 +705,8 @@ tomwer/io/utils/h5pyutils.py,sha256=nSKVGHhFh2dJbEj6Ie0wPgU60HXxTctMJoTyRIpQPQs,
|
|
613
705
|
tomwer/io/utils/raw_and_processed_data.py,sha256=XMAyMTbxB7orxHsYOPuWQd5QiGQB_xesx8bMf2KyW0g,3208
|
614
706
|
tomwer/io/utils/tomoobj.py,sha256=PGcTc2nMDMzKGvL7u5LgIMc9MYhJwLN9yecA1gttmzE,2828
|
615
707
|
tomwer/io/utils/utils.py,sha256=GnBaxTacb-vMJymiVk8onRRjJamGx0xRzbWl5yFl_fQ,10678
|
708
|
+
tomwer/io/utils/test/test_raw_and_processed_data.py,sha256=2TgR3GZZ1PJ2wlyCqRU4qxh6XrQF-thvSqLZFMSV5es,552
|
709
|
+
tomwer/io/utils/test/test_utils.py,sha256=ogE6s-QuqbRHdgunuKGQoDKpqc4sQkN1CLSxgbxH4ws,3244
|
616
710
|
tomwer/resources/__init__.py,sha256=dXxWZFKRE4ncPKzNq9BBLtjwRYmRvzzErgKhvzH_W6g,5904
|
617
711
|
tomwer/resources/gui/icons/Imagej_icon.png,sha256=JFDzPw20pzRrf6wLBnScXEcmTVt6orXPzwPwniKeVss,1618960
|
618
712
|
tomwer/resources/gui/icons/a.png,sha256=YrYFndLl3SUcsYNJDloU9YeJLBUkiMmgvDjDNJCMipI,3858
|
@@ -757,7 +851,7 @@ tomwer/synctools/stacks/edit/darkflatpatch.py,sha256=dCP8Zk6f-toFUFzcnJHbF2bkTS0
|
|
757
851
|
tomwer/synctools/stacks/edit/imagekeyeditor.py,sha256=NNDQWMJEuE50zBk_2zJAWbf6hC8J3QKV42YpPQAmV0U,5259
|
758
852
|
tomwer/synctools/stacks/reconstruction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
759
853
|
tomwer/synctools/stacks/reconstruction/axis.py,sha256=9Gqh0isvLYupypOq3P7XM_lU4Hcni4l3V2aUZsAVLrc,8876
|
760
|
-
tomwer/synctools/stacks/reconstruction/castvolume.py,sha256=
|
854
|
+
tomwer/synctools/stacks/reconstruction/castvolume.py,sha256=PaoMuTxcj4Ms6N2MFnrCzmaCCC3wEZItYAwQ8NApe_o,8282
|
761
855
|
tomwer/synctools/stacks/reconstruction/dkrefcopy.py,sha256=LlEtCh-nbftFo77s1QXnoISDQKQOBR-4AKfurgUj7zI,7040
|
762
856
|
tomwer/synctools/stacks/reconstruction/nabu.py,sha256=dDqw74kobhkawquJIwLDQH--PN6LbbthlqZ9MQUBJi4,7816
|
763
857
|
tomwer/synctools/stacks/reconstruction/normalization.py,sha256=wcw-tHjKUQMcija0bCExDl0InYsKHZNTeTk4w_hnaDI,5362
|
@@ -774,12 +868,15 @@ tomwer/tests/datasets.py,sha256=Gz-gUkrKmE6WXjyXQUKKdSn-czEArrGZxgiXDbM76IA,335
|
|
774
868
|
tomwer/tests/test_scripts.py,sha256=LAVRe9PLj-8I-9upzd4QTXhktIpuaCFmVyw_e_Lhwrk,5117
|
775
869
|
tomwer/tests/test_utils.py,sha256=D0rNDSK6csEOYBY_7gD-4A3jp8rYAm8L1_Xg34A9I2s,305
|
776
870
|
tomwer/tests/utils.py,sha256=RAXx5A99WD4Vyuv_wjHBdr-Xu7UiThHRKw2eiB5GX10,107
|
871
|
+
tomwer/tests/test_ewoks/test_conversion.py,sha256=a8cEWbErXiFCAkaapi0jeEoRKYxcFQCoa-Jr_u77_OM,3656
|
872
|
+
tomwer/tests/test_ewoks/test_single_node_execution.py,sha256=eSqevCAj9RBtmechj-QxYSYUKWb6JG9lR8BMKJV_urs,4143
|
873
|
+
tomwer/tests/test_ewoks/test_workflows.py,sha256=dVW9dv_FtEYm2KoWYZOfecLVqQUuXcFdQuN0srpN-2E,6339
|
777
874
|
tomwer/third_part/WaitingOverlay.py,sha256=GnqiytcJDp_24Cmz_2nZAP5HfpL3Yh7AzR2ATIusGsg,3906
|
778
875
|
tomwer/third_part/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
779
|
-
tomwer-1.3.
|
780
|
-
tomwer-1.3.
|
781
|
-
tomwer-1.3.
|
782
|
-
tomwer-1.3.
|
783
|
-
tomwer-1.3.
|
784
|
-
tomwer-1.3.
|
785
|
-
tomwer-1.3.
|
876
|
+
tomwer-1.3.7.dist-info/LICENSE,sha256=yR_hIZ1MfDh9x2_s23uFqBH7m5DgrBl9nJKkE37YChM,1877
|
877
|
+
tomwer-1.3.7.dist-info/METADATA,sha256=7spB_AlelB4LJDa9CMExldbp94rofjBMlHf_mGou_1Q,11459
|
878
|
+
tomwer-1.3.7.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
879
|
+
tomwer-1.3.7.dist-info/entry_points.txt,sha256=fIcDnCxjgwzfIylLYhUsFyiNZjZMxsfRQBxi4f-cJg8,440
|
880
|
+
tomwer-1.3.7.dist-info/namespace_packages.txt,sha256=Iut-JTfT11SZHHm77_ZeszD7pZDWXcTweCbvrJpqDyQ,14
|
881
|
+
tomwer-1.3.7.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
|
882
|
+
tomwer-1.3.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|