tomwer 1.4.18__py3-none-any.whl → 1.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +11 -8
- orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +12 -9
- orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +11 -0
- orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +1 -1
- orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +21 -10
- tomwer/app/axis.py +1 -1
- tomwer/app/reducedarkflat.py +2 -2
- tomwer/core/process/control/datalistener/rpcserver.py +2 -8
- tomwer/core/process/drac/binning.py +2 -2
- tomwer/core/process/drac/output.py +1 -1
- tomwer/core/process/edit/imagekeyeditor.py +4 -6
- tomwer/core/process/edit/nxtomoeditor.py +58 -20
- tomwer/core/process/output.py +6 -5
- tomwer/core/process/reconstruction/axis/anglemode.py +2 -2
- tomwer/core/process/reconstruction/axis/axis.py +1 -0
- tomwer/core/process/reconstruction/axis/mode.py +2 -2
- tomwer/core/process/reconstruction/axis/params.py +4 -4
- tomwer/core/process/reconstruction/axis/projectiontype.py +1 -1
- tomwer/core/process/reconstruction/axis/side.py +1 -1
- tomwer/core/process/reconstruction/darkref/darkrefs.py +2 -2
- tomwer/core/process/reconstruction/darkref/darkrefscopy.py +1 -1
- tomwer/core/process/reconstruction/darkref/params.py +2 -3
- tomwer/core/process/reconstruction/nabu/castvolume.py +4 -1
- tomwer/core/process/reconstruction/nabu/helical.py +3 -1
- tomwer/core/process/reconstruction/nabu/nabucommon.py +2 -2
- tomwer/core/process/reconstruction/nabu/nabuscores.py +1 -1
- tomwer/core/process/reconstruction/nabu/nabuslices.py +4 -4
- tomwer/core/process/reconstruction/nabu/plane.py +2 -2
- tomwer/core/process/reconstruction/nabu/target.py +1 -1
- tomwer/core/process/reconstruction/nabu/test/test_castvolume.py +2 -0
- tomwer/core/process/reconstruction/nabu/test/test_nabu_utils.py +9 -0
- tomwer/core/process/reconstruction/nabu/utils.py +18 -14
- tomwer/core/process/reconstruction/normalization/normalization.py +1 -1
- tomwer/core/process/reconstruction/normalization/params.py +4 -4
- tomwer/core/process/reconstruction/output.py +2 -2
- tomwer/core/process/reconstruction/saaxis/params.py +3 -3
- tomwer/core/process/reconstruction/saaxis/saaxis.py +5 -1
- tomwer/core/process/reconstruction/scores/params.py +2 -2
- tomwer/core/process/reconstruction/scores/scores.py +3 -3
- tomwer/core/process/reconstruction/tests/test_axis.py +1 -1
- tomwer/core/process/reconstruction/tests/test_saaxis.py +56 -66
- tomwer/core/process/stitching/metadataholder.py +5 -5
- tomwer/core/process/stitching/nabustitcher.py +1 -4
- tomwer/core/process/tests/test_normalization.py +2 -1
- tomwer/core/scan/edfscan.py +3 -3
- tomwer/core/scan/nxtomoscan.py +3 -3
- tomwer/core/scan/scanbase.py +3 -3
- tomwer/core/scan/scantype.py +1 -1
- tomwer/core/settings.py +1 -1
- tomwer/core/tomwer_object.py +1 -1
- tomwer/core/utils/nxtomoutils.py +2 -2
- tomwer/core/utils/spec.py +6 -3
- tomwer/gui/cluster/slurm.py +12 -3
- tomwer/gui/configuration/level.py +1 -1
- tomwer/gui/control/actions.py +1 -1
- tomwer/gui/control/datadiscovery.py +1 -1
- tomwer/gui/control/datalist.py +1 -1
- tomwer/gui/control/reducedarkflatselector.py +4 -4
- tomwer/gui/control/series/seriescreator.py +5 -5
- tomwer/gui/control/tomoobjdisplaymode.py +1 -1
- tomwer/gui/dataportal/gallery.py +6 -6
- tomwer/gui/edit/imagekeyeditor.py +7 -9
- tomwer/gui/edit/nxtomoeditor.py +420 -112
- tomwer/gui/edit/tests/test_nx_editor.py +155 -83
- tomwer/gui/reconstruction/axis/CalculationWidget.py +1 -1
- tomwer/gui/reconstruction/axis/EstimatedCORWidget.py +12 -8
- tomwer/gui/reconstruction/axis/EstimatedCorComboBox.py +2 -2
- tomwer/gui/reconstruction/axis/InputWidget.py +3 -3
- tomwer/gui/reconstruction/darkref/darkrefwidget.py +2 -2
- tomwer/gui/reconstruction/nabu/castvolume.py +16 -1
- tomwer/gui/reconstruction/nabu/nabuconfig/base.py +2 -4
- tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +6 -6
- tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +1 -1
- tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +5 -5
- tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +2 -4
- tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +78 -52
- tomwer/gui/reconstruction/nabu/nabuflow.py +3 -13
- tomwer/gui/reconstruction/nabu/slices.py +11 -11
- tomwer/gui/reconstruction/nabu/test/test_cast_volume.py +19 -0
- tomwer/gui/reconstruction/nabu/volume.py +1 -1
- tomwer/gui/reconstruction/normalization/intensity.py +8 -12
- tomwer/gui/reconstruction/saaxis/corrangeselector.py +2 -2
- tomwer/gui/reconstruction/saaxis/dimensionwidget.py +71 -67
- tomwer/gui/reconstruction/sacommon.py +1 -1
- tomwer/gui/reconstruction/scores/scoreplot.py +18 -10
- tomwer/gui/reconstruction/tests/test_saaxis.py +18 -16
- tomwer/gui/stitching/SingleAxisStitchingWidget.py +8 -8
- tomwer/gui/stitching/StitchingOptionsWidget.py +1 -1
- tomwer/gui/stitching/alignment.py +8 -8
- tomwer/gui/stitching/config/axisparams.py +2 -2
- tomwer/gui/stitching/config/output.py +1 -1
- tomwer/gui/stitching/config/positionoveraxis.py +1 -1
- tomwer/gui/stitching/config/stitchingstrategies.py +4 -6
- tomwer/gui/stitching/config/tomoobjdetails.py +21 -13
- tomwer/gui/stitching/normalization.py +6 -6
- tomwer/gui/stitching/tests/test_ZStitchingWindow.py +8 -1
- tomwer/gui/stitching/tests/test_preview.py +10 -7
- tomwer/gui/stitching/tests/utils.py +27 -18
- tomwer/gui/stitching/z_stitching/fineestimation.py +7 -9
- tomwer/gui/stitching/z_stitching/tests/test_raw_estimation.py +18 -7
- tomwer/gui/stitching/z_stitching/tests/test_stitching_window.py +7 -2
- tomwer/gui/utils/buttons.py +54 -36
- tomwer/gui/utils/flow.py +2 -2
- tomwer/gui/utils/loadingmode.py +1 -1
- tomwer/gui/utils/unitsystem.py +44 -33
- tomwer/gui/utils/vignettes.py +1 -1
- tomwer/gui/visualization/dataviewer.py +7 -7
- tomwer/gui/visualization/diffviewer/diffviewer.py +4 -4
- tomwer/gui/visualization/diffviewer/shiftwidget.py +4 -6
- tomwer/gui/visualization/reconstructionparameters.py +35 -23
- tomwer/gui/visualization/scanoverview.py +28 -11
- tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +25 -13
- tomwer/gui/visualization/test/test_reconstruction_parameters.py +2 -2
- tomwer/model/dataset.py +0 -0
- tomwer/resources/gui/icons/borders.png +0 -0
- tomwer/synctools/utils/scanstages.py +3 -3
- tomwer/tasks/reconstruction/cleardarkflat.py +42 -0
- tomwer/tests/app/test_stitching.py +1 -1
- tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_nxtomo_editor.py +32 -20
- tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_widget.py +1 -1
- tomwer/version.py +2 -2
- {tomwer-1.4.18.dist-info → tomwer-1.5.0.dist-info}/METADATA +8 -8
- {tomwer-1.4.18.dist-info → tomwer-1.5.0.dist-info}/RECORD +127 -124
- {tomwer-1.4.18.dist-info → tomwer-1.5.0.dist-info}/WHEEL +1 -1
- {tomwer-1.4.18.dist-info → tomwer-1.5.0.dist-info}/entry_points.txt +0 -0
- {tomwer-1.4.18.dist-info → tomwer-1.5.0.dist-info}/licenses/LICENSE +0 -0
- {tomwer-1.4.18.dist-info → tomwer-1.5.0.dist-info}/top_level.txt +0 -0
@@ -16,8 +16,8 @@ orangecontrib/tomwer/tutorials/drac_publication.ows,sha256=zncKob1qfvUacGi1B65kw
|
|
16
16
|
orangecontrib/tomwer/tutorials/hello_world_python_script.ows,sha256=b4zBqpzwmE6hpwauqk4XM-BDQW4MY4Sd77G6rFcut3g,3670
|
17
17
|
orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows,sha256=O9Bnunjh0Q9tqpNZ56yQo7UqHAiynHH_NTB4_y6N-Ao,4435
|
18
18
|
orangecontrib/tomwer/tutorials/simple_slice_reconstruction_on_slurm.ows,sha256=t-fwTMCvqQV17AIZWM0lSCmjC6loLEHNZSFmAADF9xY,6584
|
19
|
-
orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows,sha256=
|
20
|
-
orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows,sha256=
|
19
|
+
orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows,sha256=mhvCyFqXnFznRPaTG6wgjpxkte8n_SOzg3W8yJkWy1s,7025
|
20
|
+
orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows,sha256=jHOERmyBFo7NmmmOUO6KroAfvyAD8ds92lkl0g73C-8,9830
|
21
21
|
orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows,sha256=TUZNkXEsQyj7Qra1GEb4IhGFDWv3uJzqXbp3P04jwbs,5192
|
22
22
|
orangecontrib/tomwer/tutorials/volume_casting_on_slurm.ows,sha256=yKa6pvd4UB6XDDlj_o7T8Md6bI8aQJXMCUnxyecdXbc,7568
|
23
23
|
orangecontrib/tomwer/tutorials/id16b/ID16b_full_volume.ows,sha256=eSxYxrZ-0WKsmDqXivsHxND7SR2dSwdgG6Wcjbr06Ew,1727
|
@@ -27,7 +27,7 @@ orangecontrib/tomwer/tutorials/id16b/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
27
27
|
orangecontrib/tomwer/widgets/__init__.py,sha256=dX_TpkBh3mVsrj3EeGglEESsnZAEVq7V0Nb9bnBrb-8,1214
|
28
28
|
orangecontrib/tomwer/widgets/utils.py,sha256=yq1wZfpfY3iVAhwMRBls57q02lhljO89WRKN7MxMMNg,983
|
29
29
|
orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py,sha256=zXjddYmkhyBnoRCstZ6AYN1mG84xiOKaIntg5tqe4jw,9927
|
30
|
-
orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py,sha256=
|
30
|
+
orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py,sha256=O44AZGt7cC1KaAl4U9f78OuzKKMXOSm22voUodyvqnk,3003
|
31
31
|
orangecontrib/tomwer/widgets/cluster/__init__.py,sha256=vOOJnIIaLWAj8tnxD9MRzWDyYgk-cyuBsN7QQ5FrIoQ,385
|
32
32
|
orangecontrib/tomwer/widgets/cluster/icons/slurm.png,sha256=C-YBLwXCnh0oo4nvEt80WxX_jKYGUAFpWMUSlzt6ke0,1995
|
33
33
|
orangecontrib/tomwer/widgets/cluster/icons/slurm.svg,sha256=9LqiU88NH3ACxtZ8A7gTm-C_0ACR8iq0k_N2W1IFf9Q,9790
|
@@ -35,7 +35,7 @@ orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png,sha256=sxH1V20s0JZP
|
|
35
35
|
orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.svg,sha256=N22gP4exnQP5zYysfSGXIMTHh0QZmMQXjGOx2gOEpfc,56984
|
36
36
|
orangecontrib/tomwer/widgets/cluster/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
37
|
orangecontrib/tomwer/widgets/control/AdvancementOW.py,sha256=XCZ3UEVNa_QneIBtcK03jbjmimszhs0_JiIcQAVS8y8,1108
|
38
|
-
orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py,sha256=
|
38
|
+
orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py,sha256=t1bzPu-6hwdb3Fj2Q3fMNsQeC8h7RERK23UNX5gESUc,8028
|
39
39
|
orangecontrib/tomwer/widgets/control/DataListenerOW.py,sha256=YEjPbDJCEi9O0YYxy9lIHiZ68jO_jQmPtbmNMyG9LuI,13837
|
40
40
|
orangecontrib/tomwer/widgets/control/DataSelectorOW.py,sha256=zQNxYEJTxprjc83eyG6b9Ng0JVWmaZxhGb1T-jovMlU,4078
|
41
41
|
orangecontrib/tomwer/widgets/control/DataTransfertOW.py,sha256=SKokOHQT-LPDB1hpnsaLyUzCw_GValyC-B9WyXMjxzM,5942
|
@@ -44,7 +44,7 @@ orangecontrib/tomwer/widgets/control/DataWatcherOW.py,sha256=mL2lWppgXi--4PJapQh
|
|
44
44
|
orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py,sha256=kR0-PIbpxJL838iOI-wnELl-wwMnMOU1L3KnQCZWgbk,9600
|
45
45
|
orangecontrib/tomwer/widgets/control/EmailOW.py,sha256=W5giMAM_FOO5wOCy2P-UJ9kDSVHeNiBS_AZifWobQU0,2749
|
46
46
|
orangecontrib/tomwer/widgets/control/FilterOW.py,sha256=9hF2oa6P8WgxVSajxYRheBz9LffQqHq6UGNXKxj4pkg,3320
|
47
|
-
orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py,sha256=
|
47
|
+
orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py,sha256=GCyJ41ZOKTQWKINq9jnraWmfwamdaOVXgjoUCjhy6T4,3586
|
48
48
|
orangecontrib/tomwer/widgets/control/NXTomomillOW.py,sha256=SIf-NnsJaD8hhPCWuHceIpQbGylrMTk8B9LqL_aRe5g,13138
|
49
49
|
orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py,sha256=wHTMefZzsyLGFBIW2_gX766ri9SrRTgQohx_VURgTvo,6446
|
50
50
|
orangecontrib/tomwer/widgets/control/NotifierOW.py,sha256=V8Ho705PUMeCc4uRQ_qXIlUi0y-Iy7KZ_ftxyXFidkc,3293
|
@@ -219,9 +219,9 @@ orangecontrib/tomwer/widgets/visualization/tests/__init__.py,sha256=47DEQpj8HBSa
|
|
219
219
|
tomwer/__init__.py,sha256=cMIyH-uRxpa9WVnAuWjiBD7k9TK57WO21RzP_S-Mb8I,460
|
220
220
|
tomwer/__main__.py,sha256=7tCADiS4u7k1PCxFhlRAcYSIOpxQTGUTx8sCEQ-hi1E,8707
|
221
221
|
tomwer/utils.py,sha256=7h7dEgKAEUmQ43jkULvC1B9Adl55nkCty-SEKUKCl4U,7008
|
222
|
-
tomwer/version.py,sha256=
|
222
|
+
tomwer/version.py,sha256=SXucm0VGwBqEKDWZr2xaP-BEVZacKdZuezQPvHO0pD8,4386
|
223
223
|
tomwer/app/__init__.py,sha256=h1FKED7Tw5f99yikygt7ruXsdrxQhcJxO7kagLGxhJg,84
|
224
|
-
tomwer/app/axis.py,sha256=
|
224
|
+
tomwer/app/axis.py,sha256=1TZU27QPhq6Sa5-1kRMr4VDv2Qntg4ZHTQOjwucXf4I,5842
|
225
225
|
tomwer/app/canvas.py,sha256=y8rYOiwmv6ug7JcjgkOzEiGQnNXjKWNNmKofT0n8TFg,1538
|
226
226
|
tomwer/app/darkref.py,sha256=SnSKtLa6K1jmHfyqQfsuhJ7EC4g04ejTrhJa9pzC4S8,276
|
227
227
|
tomwer/app/darkrefpatch.py,sha256=Zzl1zdBHEDgAPd5J7agaaK1GN3uQjxePRRCaLpXL6A8,285
|
@@ -235,7 +235,7 @@ tomwer/app/nabuapp.py,sha256=1kBQlyzkEYW-iEH6hdYlrXuvg1MPQfPLmDIA5P6oXE4,7687
|
|
235
235
|
tomwer/app/nxtomoeditor.py,sha256=1Wj59ZF3QvDBmUkUosxZlxvOM-mCvs74l1YJe3tFtwQ,3012
|
236
236
|
tomwer/app/patchrawdarkflat.py,sha256=0s4Uk7rlF6VYcwKAysxj5ncP7jTgDL9XIiMPqZUktvg,3779
|
237
237
|
tomwer/app/radiostack.py,sha256=S6VB7BSmpfFdnGEyX_7wvLFiOtbtlEwgP7PEUAJLN4w,2640
|
238
|
-
tomwer/app/reducedarkflat.py,sha256=
|
238
|
+
tomwer/app/reducedarkflat.py,sha256=P3mWDaV6htTeDcUCuhn8YmRtaYrkPqJ9cCFaH87AmO8,6550
|
239
239
|
tomwer/app/rsync.py,sha256=eT8HoSOp56SqbjKKm3DQ0tl5wfGaDhE3O5XzZBlzkx0,4081
|
240
240
|
tomwer/app/samplemoved.py,sha256=EXpP9sW18Nfhi0MHwNwSuea6ZmGK61YAvzJ9qXSO4cs,2638
|
241
241
|
tomwer/app/scanviewer.py,sha256=MSMxnNATEl2Xb_cdRsurY_6UyLg5vI7w6LpOT-PnzRs,2749
|
@@ -256,15 +256,15 @@ tomwer/app/stitching/common.py,sha256=unFHRuJdzKMLlBM6znQx-KPcbJ7H__EKKe8CUw_Apf
|
|
256
256
|
tomwer/core/__init__.py,sha256=-EtD8J-a7WVnCgYS7WHkisYn61iM2PpHWcXwE5BetJ8,71
|
257
257
|
tomwer/core/futureobject.py,sha256=8Sd9gOrdhYc0PvzPeZPBNOmaHuwB5epG6RJyABRsCmQ,5113
|
258
258
|
tomwer/core/resourcemanager.py,sha256=VLNnVodMa-HOMZhN2qpUR_L6phJ8IHPUEPYMxuW6VHg,1067
|
259
|
-
tomwer/core/settings.py,sha256=
|
259
|
+
tomwer/core/settings.py,sha256=8AqV6rzXJMQLsSmTmXcDf6GU7cTvspz2-7zy2yLMnY8,3991
|
260
260
|
tomwer/core/signal.py,sha256=I5TUcyeBZzrEh1SFGs-ylJSL1aBs41ZFb3IJo3O_55c,6115
|
261
|
-
tomwer/core/tomwer_object.py,sha256=
|
261
|
+
tomwer/core/tomwer_object.py,sha256=BupCf-jgh3QG1qqMM_o7e90AD5SQ4KksrnSwCTF9nbk,2022
|
262
262
|
tomwer/core/cluster/__init__.py,sha256=w58VJZaGwC-8hwHLADeJrW9-rs-PrVz6few3AqpScqQ,116
|
263
263
|
tomwer/core/cluster/cluster.py,sha256=1dSIf5kmzyjOLZaVGkcnE0i-D6bRKazDV0TXPHJvSyQ,4424
|
264
264
|
tomwer/core/log/__init__.py,sha256=OB8j-nJvheD9_o9SkU3VLy-sOcZFQnH6o3m1RG_9WN8,70
|
265
265
|
tomwer/core/log/processlog.py,sha256=Go7hcznjw2ZazQQYVJbCTcrnZjatlh2PBoD6oYkelAQ,2342
|
266
266
|
tomwer/core/process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
267
|
-
tomwer/core/process/output.py,sha256=
|
267
|
+
tomwer/core/process/output.py,sha256=mBJ8tZBEEWpi0vSxjgBL5TUr37ZFzBIxA52N2Su8V_Y,1828
|
268
268
|
tomwer/core/process/task.py,sha256=0TqjX-bpCFvtqXGBC4WlBgMMnyh5bTEuvBHfA6U2igw,3411
|
269
269
|
tomwer/core/process/utils.py,sha256=ynblJtgrObyupOice614G1qdrG6IL2t-vVPtlv15e3c,2634
|
270
270
|
tomwer/core/process/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -286,7 +286,7 @@ tomwer/core/process/control/tomoobjseries.py,sha256=_fiVup4ugH5BAC6HwkIziA0QweEu
|
|
286
286
|
tomwer/core/process/control/volumeselector.py,sha256=0uv1Q8k5Ms1h_iU-ldhb-Y35xsy1kHwQrbUQguV5M_A,370
|
287
287
|
tomwer/core/process/control/datalistener/__init__.py,sha256=gSEeJEDX8E-8HzY7tmPc32QKfqSZHG4Ad06IxDrzOWo,52
|
288
288
|
tomwer/core/process/control/datalistener/datalistener.py,sha256=kNDTIeMhJ6n019b2XWoGoB8zDCv-zpVxE7YDzZR9KBM,9606
|
289
|
-
tomwer/core/process/control/datalistener/rpcserver.py,sha256=
|
289
|
+
tomwer/core/process/control/datalistener/rpcserver.py,sha256=5fwlg_DB0Kee3g2lvLlF0Z_HCxpEd6iHEGn0p9QC6Zg,9456
|
290
290
|
tomwer/core/process/control/datawatcher/__init__.py,sha256=F9d_bGOr5iAPEfnKaf5XOEwQSR1wZp_wkzcDYNSuin4,50
|
291
291
|
tomwer/core/process/control/datawatcher/datawatcher.py,sha256=UmOEW9vA3jJ93R1QcVRisknB_S2j0Nfsc7477VjwThE,15265
|
292
292
|
tomwer/core/process/control/datawatcher/datawatcherobserver.py,sha256=q7ZB9WMWSyeEUtuU9SKuvJ80eBlFzLUC31NlLIYfWfk,24197
|
@@ -299,10 +299,10 @@ tomwer/core/process/control/tests/test_concatenate_nxtomos.py,sha256=P2tZW7LHAJC
|
|
299
299
|
tomwer/core/process/control/tests/test_email.py,sha256=gmQ-1iu_gh9OHEUGTl-hpOxavFHbbmPynEHWArNZoAc,1553
|
300
300
|
tomwer/core/process/control/tests/test_h52nx_process.py,sha256=45iN1zJJbsegcDB-ww_me_fBmylfDO9sHnx3w9Yk_Ik,5472
|
301
301
|
tomwer/core/process/drac/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
302
|
-
tomwer/core/process/drac/binning.py,sha256=
|
302
|
+
tomwer/core/process/drac/binning.py,sha256=f3ZqXFxHAYqHoaHGWXzxHdjcV6OU_C_MGGPXLQWWB8Q,1271
|
303
303
|
tomwer/core/process/drac/dracbase.py,sha256=_EYcZscvNpLpSc6cuy6nmNKYWo2C8u6Ke_oXrLjOBiM,5639
|
304
304
|
tomwer/core/process/drac/gallery.py,sha256=bQosh4xbTWj8Vn_vqepyJ1QMfLcVGxh7uPJ0ysLtx5o,4790
|
305
|
-
tomwer/core/process/drac/output.py,sha256=
|
305
|
+
tomwer/core/process/drac/output.py,sha256=tRBtfpttOZ7J8s5keWIefq0vIJtVj3Hsw81WuY7ydi0,224
|
306
306
|
tomwer/core/process/drac/processeddataset.py,sha256=pp4uW249k7qFb1q1yZCtU1fbjoD9Y9onL5w3mOcxrWU,5839
|
307
307
|
tomwer/core/process/drac/publish.py,sha256=S6UZ39Mv0I9A5bKQig5zohFenRPonu-oxK6DEUeAvD4,3845
|
308
308
|
tomwer/core/process/drac/rawdataset.py,sha256=mB4sNTM1rx46n5whjIlY4xq1gz4_rbaS7yAS3QE2iT0,5175
|
@@ -311,60 +311,60 @@ tomwer/core/process/drac/tests/test_icat_processed_dataset.py,sha256=EW6QjpMCtLN
|
|
311
311
|
tomwer/core/process/drac/tests/test_icat_raw_dataset.py,sha256=2ufJs_1BBjrK8aVxVrLw0LCMnnN8pW3p2GaHAQRz8Gk,2784
|
312
312
|
tomwer/core/process/edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
313
313
|
tomwer/core/process/edit/darkflatpatch.py,sha256=ONMoe2RqXddR7roNWjFUizjPPJKZPmKu3M10kZ0DLl4,3642
|
314
|
-
tomwer/core/process/edit/imagekeyeditor.py,sha256=
|
315
|
-
tomwer/core/process/edit/nxtomoeditor.py,sha256=
|
314
|
+
tomwer/core/process/edit/imagekeyeditor.py,sha256=vvPVDYbZL3gSc02lGAONV087IpicE4QytdcKSEanxZU,7355
|
315
|
+
tomwer/core/process/edit/nxtomoeditor.py,sha256=1xOXDhLgIq2_88zIqNSjMHCiQ11k6kgfm-gBgY0gG_U,12838
|
316
316
|
tomwer/core/process/edit/tests/test_darkflatpatch.py,sha256=0QOjUgiYkjuWDZvI5pkuiViK4HUJA5E2sXF5LXtf_vY,9366
|
317
317
|
tomwer/core/process/edit/tests/test_imagekey_editor.py,sha256=ft-xDMRk6CRs7DehNEnh1uJ9gLKJ-SxZAb0GmsLek0w,2345
|
318
318
|
tomwer/core/process/reconstruction/__init__.py,sha256=G_vePtIyh1WlXtcmOyQI3nRsP-F0bsaDSdLWHC0bVzo,159
|
319
|
-
tomwer/core/process/reconstruction/output.py,sha256=
|
319
|
+
tomwer/core/process/reconstruction/output.py,sha256=VmsLMkvGtWyioeQszmJSWC7veoOQCk5sTqTJtewyQEc,4109
|
320
320
|
tomwer/core/process/reconstruction/params_cache.py,sha256=GTchgCH1Db7fuYsSGxSF6wCTeV5grlYQh5ab198nmOk,1527
|
321
321
|
tomwer/core/process/reconstruction/paramsbase.py,sha256=6PjFcO0yYs_apgv2MImGSDLsBgQ7UeK2TSBLz28HYgc,6344
|
322
322
|
tomwer/core/process/reconstruction/axis/__init__.py,sha256=VSQkN6M6JvM_c55OiboNyJUW8Zs1wkkQgv1JYmzvIr8,80
|
323
|
-
tomwer/core/process/reconstruction/axis/anglemode.py,sha256=
|
324
|
-
tomwer/core/process/reconstruction/axis/axis.py,sha256=
|
325
|
-
tomwer/core/process/reconstruction/axis/mode.py,sha256=
|
326
|
-
tomwer/core/process/reconstruction/axis/params.py,sha256=
|
327
|
-
tomwer/core/process/reconstruction/axis/projectiontype.py,sha256=
|
328
|
-
tomwer/core/process/reconstruction/axis/side.py,sha256=
|
323
|
+
tomwer/core/process/reconstruction/axis/anglemode.py,sha256=lpc6EQ8rZaFd4q-HpNWlQ1Fb3rJWQLQpjm-9R937hE0,520
|
324
|
+
tomwer/core/process/reconstruction/axis/axis.py,sha256=mphrIARRau6X1bS2vHeLMsVcNq4ntcDQtsDD5KmkQeE,17144
|
325
|
+
tomwer/core/process/reconstruction/axis/mode.py,sha256=yH8P30CFB7pDOc-YcbObydvYto_m_gEcbWjGREY4mgU,9514
|
326
|
+
tomwer/core/process/reconstruction/axis/params.py,sha256=mbYu1m225fivmfDbnbBUPOurkzkmjtS5rbCyMOyXCW0,28232
|
327
|
+
tomwer/core/process/reconstruction/axis/projectiontype.py,sha256=uj9EElRWl2CP7zyAUPyt8u72K8h2-Lhwme6vn4KItQc,173
|
328
|
+
tomwer/core/process/reconstruction/axis/side.py,sha256=WPblAjFYGRjcs3Oaa0nEDLujBg9aY7aIEgtvQ5dog8A,128
|
329
329
|
tomwer/core/process/reconstruction/darkref/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
330
|
-
tomwer/core/process/reconstruction/darkref/darkrefs.py,sha256=
|
331
|
-
tomwer/core/process/reconstruction/darkref/darkrefscopy.py,sha256=
|
332
|
-
tomwer/core/process/reconstruction/darkref/params.py,sha256=
|
330
|
+
tomwer/core/process/reconstruction/darkref/darkrefs.py,sha256=PL2-18lybEuUyjux3lP-eWTJNRKJndTetpq4myyoyRI,16966
|
331
|
+
tomwer/core/process/reconstruction/darkref/darkrefscopy.py,sha256=yPkEnDfUVZUS7QvbIUmd1rPXCMT6oDVLqWNTKQHH9Dk,12959
|
332
|
+
tomwer/core/process/reconstruction/darkref/params.py,sha256=QIGEs5q9hDXnXvz7X8wWyRhcVkgtdSAtddL2uugg6Yk,8707
|
333
333
|
tomwer/core/process/reconstruction/darkref/settings.py,sha256=35jliuOIjMKTOJjgn4uiotcDEr6RskpLHfRWWLm76dc,188
|
334
334
|
tomwer/core/process/reconstruction/nabu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
335
|
-
tomwer/core/process/reconstruction/nabu/castvolume.py,sha256
|
336
|
-
tomwer/core/process/reconstruction/nabu/helical.py,sha256=
|
337
|
-
tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=
|
338
|
-
tomwer/core/process/reconstruction/nabu/nabuscores.py,sha256=
|
339
|
-
tomwer/core/process/reconstruction/nabu/nabuslices.py,sha256=
|
335
|
+
tomwer/core/process/reconstruction/nabu/castvolume.py,sha256=yTdVMGjG8gnByNi7D1X3OsqU81kJ5usLmFDjvSlhvjw,10184
|
336
|
+
tomwer/core/process/reconstruction/nabu/helical.py,sha256=twqUNAatBAAK2K0cTmqcWb4py_nHif6Vsr3ms6Pqbag,2051
|
337
|
+
tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=GGhM3jl2OVbI2mr4-bMlMOyON2Ss0dEOU_v9SmixhTo,24532
|
338
|
+
tomwer/core/process/reconstruction/nabu/nabuscores.py,sha256=fjOtWxPOoVHq5E1mkbpfVglWNq5HfP1VAzhaLu1jd1M,25291
|
339
|
+
tomwer/core/process/reconstruction/nabu/nabuslices.py,sha256=CybiZOf0qATMeLkYyC_UuYVfReJku_-2BS0BQbq7xxs,32084
|
340
340
|
tomwer/core/process/reconstruction/nabu/nabuvolume.py,sha256=Fn0tkPDTDJQaMEJA4LzpPp0ZtG4MIu9YN82-jesxRKo,20052
|
341
|
-
tomwer/core/process/reconstruction/nabu/plane.py,sha256=
|
341
|
+
tomwer/core/process/reconstruction/nabu/plane.py,sha256=1SFNJgl1_cDYVW6gq7zjw2jpvRjiEmzzEQEBCxUseGM,380
|
342
342
|
tomwer/core/process/reconstruction/nabu/settings.py,sha256=3AJpxVQbJziw4v6F26Ppz8Q9vc9ZNepTWygqpCAbIEM,955
|
343
|
-
tomwer/core/process/reconstruction/nabu/target.py,sha256=
|
344
|
-
tomwer/core/process/reconstruction/nabu/utils.py,sha256=
|
345
|
-
tomwer/core/process/reconstruction/nabu/test/test_castvolume.py,sha256=
|
346
|
-
tomwer/core/process/reconstruction/nabu/test/test_nabu_utils.py,sha256=
|
343
|
+
tomwer/core/process/reconstruction/nabu/target.py,sha256=I_7X2Nfr5VC4doaodtCzTeg7JVG1Lnbv123uI8AKEeU,111
|
344
|
+
tomwer/core/process/reconstruction/nabu/utils.py,sha256=VLyF3JUBSCDOfOB4gtKuQoFr0ZwpbgeuJ1wZL5NZ4wM,16253
|
345
|
+
tomwer/core/process/reconstruction/nabu/test/test_castvolume.py,sha256=yEqVFrmp8vVpiIuhASMR9bWLF3Cgnag2u8S_SaI8BSo,3985
|
346
|
+
tomwer/core/process/reconstruction/nabu/test/test_nabu_utils.py,sha256=vmB02KUGcP_AyUEWuDByGm0UAOCDIHEhePfRV1UGQQg,15608
|
347
347
|
tomwer/core/process/reconstruction/nabu/test/test_nabunormalization.py,sha256=5rHDwUROEBlsEFsZoy8mmcdRpziEetF9g_oFyxlvS6k,6010
|
348
348
|
tomwer/core/process/reconstruction/normalization/__init__.py,sha256=TDtATpMVFkEOT93wLXLpW0A_TOeiQDiM7AWAqX4FIB0,119
|
349
|
-
tomwer/core/process/reconstruction/normalization/normalization.py,sha256=
|
350
|
-
tomwer/core/process/reconstruction/normalization/params.py,sha256=
|
349
|
+
tomwer/core/process/reconstruction/normalization/normalization.py,sha256=8rW9D6ev3GZzMf8LtmwfG3_IQrmNk3VyZsdmadH-jB8,11847
|
350
|
+
tomwer/core/process/reconstruction/normalization/params.py,sha256=BqZPnaAeCi0CVkNxVKcS188oCb2y6RUxY-c5pLdOIDk,3374
|
351
351
|
tomwer/core/process/reconstruction/saaxis/__init__.py,sha256=ZEOu0nZWlMyBoX_A64yeEjVflE5x4iWSpYLTgs45g0o,137
|
352
|
-
tomwer/core/process/reconstruction/saaxis/params.py,sha256=
|
353
|
-
tomwer/core/process/reconstruction/saaxis/saaxis.py,sha256=
|
352
|
+
tomwer/core/process/reconstruction/saaxis/params.py,sha256=tCV5QLu7jqLwmoRnUGCNxXgdXZ_WRRuuIxbmXG18mH0,4171
|
353
|
+
tomwer/core/process/reconstruction/saaxis/saaxis.py,sha256=g3p8_cI1KTasAc4183pXKa22jwml-CfAbhwF8dvZLlo,30282
|
354
354
|
tomwer/core/process/reconstruction/sadeltabeta/__init__.py,sha256=WDYJxfqPnz5IeLPCX5W8UEO8-Z-NSH79gkqp2DZn1bM,162
|
355
355
|
tomwer/core/process/reconstruction/sadeltabeta/params.py,sha256=ziAlTtQLy4EItIprFxDOm2Td1emHpSpnQb58niF1tI0,2691
|
356
356
|
tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py,sha256=bAO0dYSnMdgbBHlcU-roRC7sGqLIpi_rlC7cMXFInLI,29075
|
357
357
|
tomwer/core/process/reconstruction/scores/__init__.py,sha256=aTWranL8RRGSMKOSDkkjhaqWisgZdP9Xgx7GoFhLwJo,282
|
358
|
-
tomwer/core/process/reconstruction/scores/params.py,sha256=
|
359
|
-
tomwer/core/process/reconstruction/scores/scores.py,sha256=
|
358
|
+
tomwer/core/process/reconstruction/scores/params.py,sha256=vHFPW2moZd7Ce5kYgr7Go8Gnk4f7BYSYPrfoPSEZeJ8,6126
|
359
|
+
tomwer/core/process/reconstruction/scores/scores.py,sha256=N6gE9X4w4r1n_7J8m-oThefUhmnGHJFtQ0J9XLUmHi4,5855
|
360
360
|
tomwer/core/process/reconstruction/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
361
|
-
tomwer/core/process/reconstruction/tests/test_axis.py,sha256=
|
361
|
+
tomwer/core/process/reconstruction/tests/test_axis.py,sha256=xz5_ng78Qb8xvabmmIJkuEx7J-jm6k_mxi7rk7H2Nh8,1683
|
362
362
|
tomwer/core/process/reconstruction/tests/test_axis_params.py,sha256=DSZ73nr4vom12ZFwdqoYBMvCqTx9k1a0xEDq8NsEqzo,1614
|
363
363
|
tomwer/core/process/reconstruction/tests/test_darkref.py,sha256=KkdZ4epw9fYOPT3ebgX14eq611ySRRo8OZb9hocOfUs,1105
|
364
364
|
tomwer/core/process/reconstruction/tests/test_darkref_copy.py,sha256=Cl8qLAMZxLHDJp2oMDusr6q2WfALIg6mpbvuGyJJY7M,6090
|
365
365
|
tomwer/core/process/reconstruction/tests/test_params_cache.py,sha256=mNqWbOLr4mo06mwF3KhFpQPRvGgFxsCTPhLlK-fF2Ro,1238
|
366
366
|
tomwer/core/process/reconstruction/tests/test_paramsbase.py,sha256=n9x9BZV4I9uF7DM5QjCelfxaAzWQ6vx9N9BsjysW6RU,1505
|
367
|
-
tomwer/core/process/reconstruction/tests/test_saaxis.py,sha256=
|
367
|
+
tomwer/core/process/reconstruction/tests/test_saaxis.py,sha256=iuDJW3Wr5vbS19UZO49a7ohcJBX5vhQytzvOEPUusIQ,2362
|
368
368
|
tomwer/core/process/reconstruction/tests/test_sadeltabeta.py,sha256=24JRMIocNYLMdX_xFgOCUUo_VA61BPzz3HTaRTzDFhE,1232
|
369
369
|
tomwer/core/process/reconstruction/tests/test_utils.py,sha256=o_w8Bkk3T0btLCAan2UPq9U45y9vfh8ihyaHnZ7fEb0,1006
|
370
370
|
tomwer/core/process/reconstruction/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -373,8 +373,8 @@ tomwer/core/process/script/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
373
373
|
tomwer/core/process/script/python.py,sha256=NScx6DtRA6m71jciiN6a7QIr3ICWmo3rXJY1hoExp5A,2074
|
374
374
|
tomwer/core/process/script/tests/test_script.py,sha256=1uku23G5_6JEjohI53FZyLpTjkmfsdGrwX__5Mr3DBg,1024
|
375
375
|
tomwer/core/process/stitching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
376
|
-
tomwer/core/process/stitching/metadataholder.py,sha256=
|
377
|
-
tomwer/core/process/stitching/nabustitcher.py,sha256=
|
376
|
+
tomwer/core/process/stitching/metadataholder.py,sha256=qz_JHysVS8AWOc3focmFFh0uixnVX9oO_UZ5mJsZYZ4,6682
|
377
|
+
tomwer/core/process/stitching/nabustitcher.py,sha256=jZorn5AA6y2pOEcUdixm9Nvzl1O1FGPShaZBxRKKw-c,7327
|
378
378
|
tomwer/core/process/stitching/tests/test_metadataholder.py,sha256=E9jgvtwdbcF9tgWS3uqHppHf8ff0aCvjROrLAFVZSpQ,631
|
379
379
|
tomwer/core/process/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
380
380
|
tomwer/core/process/tests/test_conditions.py,sha256=FBmBn3fvMW2H27ZLVnyYyS1bnfCb9v86WnWDw46WbMo,2140
|
@@ -383,7 +383,7 @@ tomwer/core/process/tests/test_data_listener.py,sha256=R8aNlDvNbrm7ziZtcKE5cB-fi
|
|
383
383
|
tomwer/core/process/tests/test_data_transfer.py,sha256=2eQ4-UzscI4PbFWopY0kACumAP4feVekN9W6uzbz2rM,14031
|
384
384
|
tomwer/core/process/tests/test_data_watcher.py,sha256=i08qwGz1pOH8u_W8A7UpjYRActf2heKvcFWNvVJRSYQ,1262
|
385
385
|
tomwer/core/process/tests/test_nabu.py,sha256=gOYQ5ujQh86g39g539kjhfu8odpZXy60gvGQBoNPi5E,18049
|
386
|
-
tomwer/core/process/tests/test_normalization.py,sha256=
|
386
|
+
tomwer/core/process/tests/test_normalization.py,sha256=QiQu5FdIbjWqWDei6bWRqY6TsdQ61h1c5JUFdKU8Lck,2719
|
387
387
|
tomwer/core/process/tests/test_timer.py,sha256=PGcYSQJ55ysj2J8bh7RZtboRL4zLoOk4mB_0CGjDuBU,1704
|
388
388
|
tomwer/core/process/visualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
389
389
|
tomwer/core/process/visualization/dataviewer.py,sha256=evqc14kAgY-M4AyPZMGQY1aLVJdfjid6BtE6F_VA5wg,335
|
@@ -404,14 +404,14 @@ tomwer/core/process/visualization/tests/test_slice_stack.py,sha256=9gFx-FldlnjI6
|
|
404
404
|
tomwer/core/process/visualization/tests/test_volume_viewer.py,sha256=uWLnmmoea5cLta3GmAzpgvsTcrSupkTIypiZB-fqrOc,246
|
405
405
|
tomwer/core/scan/__init__.py,sha256=1L8hSm3eRcqEPh_QhvlNeD5rEWuE47fWDXLcz_76WCY,186
|
406
406
|
tomwer/core/scan/blissscan.py,sha256=Vg95kV0XJnvzimU7m2FCxIytZvr1jHQdhrCRE-jciUE,6878
|
407
|
-
tomwer/core/scan/edfscan.py,sha256=
|
407
|
+
tomwer/core/scan/edfscan.py,sha256=Jb1FvrJrpwu87FcUbkJsZKULret-UEmDq_zOD6Bi7ms,20833
|
408
408
|
tomwer/core/scan/futurescan.py,sha256=chXjteQ4_6cSyFBoCil-DeHkHGGzM-xb21xJRYLEfhI,213
|
409
409
|
tomwer/core/scan/hdf5scan.py,sha256=rQ-WtbOIgNtnMxA2kC23fEAcJIJIKboAv7UQColkrBg,966
|
410
410
|
tomwer/core/scan/helicalmetadata.py,sha256=JRBxqHkyTe5f3FDlbIeDfN31P6Ms48SqGiFRXHuZ8sw,472
|
411
|
-
tomwer/core/scan/nxtomoscan.py,sha256=
|
412
|
-
tomwer/core/scan/scanbase.py,sha256=
|
411
|
+
tomwer/core/scan/nxtomoscan.py,sha256=a5MBZ2i5P1pHhLL0sNewYhEObM_bF4BRPJ0IlexH-rI,18438
|
412
|
+
tomwer/core/scan/scanbase.py,sha256=OJ6SltmiLBLzs8keex9xrXTmUjjouSnQuK8iSl4OGY8,25614
|
413
413
|
tomwer/core/scan/scanfactory.py,sha256=-bF0Ru9bn8bnGk4MKXhbt5Oli19qN1WvFPDMtqw81BA,9116
|
414
|
-
tomwer/core/scan/scantype.py,sha256=
|
414
|
+
tomwer/core/scan/scantype.py,sha256=I2FMLJQBeWSxF2RC3zIXxZJpTAwKCr5rd1yVv1mCnmw,126
|
415
415
|
tomwer/core/scan/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
416
416
|
tomwer/core/scan/tests/test_edf.py,sha256=JI7wH5emdjlYl08OhmjIO_8mui7rHa-aRCUwmkCRyys,830
|
417
417
|
tomwer/core/scan/tests/test_future_scan.py,sha256=tsF9p57dCOmW0fPyl6BP2lLSo0rRYRF6hSF-kryLMDM,848
|
@@ -430,11 +430,11 @@ tomwer/core/utils/image.py,sha256=vjUGRSFEn8WdlZ_2jpHHgVQjx4ac1Qa_0Cgspo-bR1c,35
|
|
430
430
|
tomwer/core/utils/lbsram.py,sha256=MOhgaDUBsIt2fU2KVPBy9lsJ7BGwXZCc0VDKK3tH2HI,988
|
431
431
|
tomwer/core/utils/logconfig.py,sha256=p3ggqsukcsksEFhLztYjX8tRcUD3VMn9JVCvFpSUplM,85
|
432
432
|
tomwer/core/utils/normalization.py,sha256=078TPG4wY9JhUOAqKZmN50w2j-7-cEs30UmiXNlYKOs,1548
|
433
|
-
tomwer/core/utils/nxtomoutils.py,sha256=
|
433
|
+
tomwer/core/utils/nxtomoutils.py,sha256=AOHHIahugUz5617aBHWtpLCXiC916GT2FatRWF43CfM,1301
|
434
434
|
tomwer/core/utils/resource.py,sha256=glDY_jd_W7bOBwYbT-gNhBLwyZCrRD8c9PGrt6YWt-s,568
|
435
435
|
tomwer/core/utils/scanutils.py,sha256=71vRbS0lHSIe-0BGpmJfucnvySUE6PUQM2QHhAR8HO8,14276
|
436
436
|
tomwer/core/utils/slurm.py,sha256=nh9d1lgWQ1EN5l2hUz2yXMZ3bAfdVWD0Om2hEQnyBYY,633
|
437
|
-
tomwer/core/utils/spec.py,sha256=
|
437
|
+
tomwer/core/utils/spec.py,sha256=1iJahQE35AwdtWLnXsp31Tbbi97zEBoB-frhNiFf070,7602
|
438
438
|
tomwer/core/utils/threads.py,sha256=K_pR7cdn8DhX_Di9Nx51KWzFSFNdZuV68v81m-wszhk,1839
|
439
439
|
tomwer/core/utils/time.py,sha256=sxDWkXS76Ww5ZuEgPVi_cWZXqsT0YABQGjZW9_iKQwQ,494
|
440
440
|
tomwer/core/utils/volumeutils.py,sha256=KE8-zW2brpHov8Ak__nrbUxtuTKi2Hrop3SRfD4bj14,490
|
@@ -464,7 +464,7 @@ tomwer/gui/settings.py,sha256=7LH-v6DM_V82j--aoHO7BaRawCsJsfgE3_6yI90TD7E,405
|
|
464
464
|
tomwer/gui/stackplot.py,sha256=WE_GOa0RzwPcMiop98ljM_r-4g4bSy-Jee9h8v3kwO8,3552
|
465
465
|
tomwer/gui/stacks.py,sha256=4lPRUjqGhif_oxArV7HHllbFsmLTdPJgHe4QD8TRz8k,13558
|
466
466
|
tomwer/gui/cluster/__init__.py,sha256=QeukFHF5SISl4dsVtIGc8UoAlgMiXdAeG2nksocycic,36
|
467
|
-
tomwer/gui/cluster/slurm.py,sha256=
|
467
|
+
tomwer/gui/cluster/slurm.py,sha256=4P5lLOjIU_DN_mutrsSZt1c5caV9dpoBXyqofxXMsK4,34778
|
468
468
|
tomwer/gui/cluster/supervisor.py,sha256=5qgAbRoFQvQeZ1jy5Z-5p98QqdZxNM9hieOce2Dn_uE,15794
|
469
469
|
tomwer/gui/cluster/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
470
470
|
tomwer/gui/cluster/tests/test_cluster.py,sha256=Yz0nzPQmMhMj3lRsJ8lB3_d9tpeJ9iC-K24IgdhV08w,3205
|
@@ -473,11 +473,11 @@ tomwer/gui/conditions/__init__.py,sha256=tR7WSGA_D6_HEqHrxqyIHrBU5rVZ4XN-xwYNrUS
|
|
473
473
|
tomwer/gui/conditions/filter.py,sha256=lZ-gczKfq7KWtdU_vfyNfio1u1v4MLSAbbrHt_DDPeQ,4234
|
474
474
|
tomwer/gui/configuration/__init__.py,sha256=8TF_yRZ1-lxMY_4VPXnwfR6ja7jOFmdv0JJmh8Q52Rs,123
|
475
475
|
tomwer/gui/configuration/action.py,sha256=xmMJAtkLKJkLOvhGRAS8i2cge54I16xxYTRQaWHOqT4,2512
|
476
|
-
tomwer/gui/configuration/level.py,sha256=
|
476
|
+
tomwer/gui/configuration/level.py,sha256=Wex7jxI1MvMYhSPi17ZwlrwpTIBPXyyLJ3aMsjXgRcY,642
|
477
477
|
tomwer/gui/control/__init__.py,sha256=Pe27j1z4qWIXC9gSUcMDo3dgL5SXyxs_AFUFUo9zOxA,92
|
478
|
-
tomwer/gui/control/actions.py,sha256=
|
479
|
-
tomwer/gui/control/datadiscovery.py,sha256=
|
480
|
-
tomwer/gui/control/datalist.py,sha256=
|
478
|
+
tomwer/gui/control/actions.py,sha256=IHXmZ-aJHO8NUlu9FzBZjUmu1gzCg5xZ7h8bfKqFH14,3381
|
479
|
+
tomwer/gui/control/datadiscovery.py,sha256=EogZJbochmRU9t2J3G1-eCjqBlYG6YXplmtlUKAQU34,6135
|
480
|
+
tomwer/gui/control/datalist.py,sha256=Kl5S5xmnTRgBKqTZ4SWisA3XjvyX9WsOdoVLrjDL2Dk,40454
|
481
481
|
tomwer/gui/control/datalistener.py,sha256=RmSuGkmnPXiIb1poOgEA0oCPK7FHPcoiLMcUJSA1r-w,16528
|
482
482
|
tomwer/gui/control/datareacheractions.py,sha256=9XiwdtRO6X-OfwKWS0hSEbNHDOkvHofiix83VTWIyn4,1236
|
483
483
|
tomwer/gui/control/datatransfert.py,sha256=AGRlOcChI9T9pi7ljgj9vNUEbr2FrsfllIRNHOoIfSA,4366
|
@@ -485,11 +485,11 @@ tomwer/gui/control/datavalidator.py,sha256=e9cfs7U5Cio8EbeUJOtr8HkxwhelJf6hnOrR-
|
|
485
485
|
tomwer/gui/control/history.py,sha256=fN-LvdpyWpw8GJ7STCPXjj2NORfJcL4vMun-8WHMUpw,3393
|
486
486
|
tomwer/gui/control/nxtomomill.py,sha256=oPYlk_LHAwRGrNs0IHKZvtxSed2nrbu2qrQCbhn3NNA,5949
|
487
487
|
tomwer/gui/control/observations.py,sha256=Tcu9IejE09CKjlN5m9w8RdZARI5SKg-RP6WK0jBDo88,7948
|
488
|
-
tomwer/gui/control/reducedarkflatselector.py,sha256=
|
488
|
+
tomwer/gui/control/reducedarkflatselector.py,sha256=n-LUd4llW-BZ4RWSHQVm_7Sowp4E-wsXuYWTb48nKD4,20608
|
489
489
|
tomwer/gui/control/scanselectorwidget.py,sha256=YrIKG-cBfLrBBDB9Hldn43QsgppXnCH0V_MmEyKQS50,1026
|
490
490
|
tomwer/gui/control/selectorwidgetbase.py,sha256=6uKMCx-L8DAXop60dCPIj4WAfHRxlNP5FpgjtPC7XYI,5663
|
491
491
|
tomwer/gui/control/singletomoobj.py,sha256=yqT4_MxJsTxAm-SsdcCh5q7j0J1KN5_TwfeDcuoSJmU,6782
|
492
|
-
tomwer/gui/control/tomoobjdisplaymode.py,sha256=
|
492
|
+
tomwer/gui/control/tomoobjdisplaymode.py,sha256=TDol7JAl8K68lQODmbMGMk6rnpI_m3mP2CNemC0NxwE,148
|
493
493
|
tomwer/gui/control/volumeselectorwidget.py,sha256=asbtYx1gfcCooeelhF00iYU8L4YVP0SdpHsFT7CXeKg,759
|
494
494
|
tomwer/gui/control/datawatcher/__init__.py,sha256=JsdZCI6AlZw0XRBT97UZzjCUSF11tlxYc8CLUCWtADQ,73
|
495
495
|
tomwer/gui/control/datawatcher/configuration.py,sha256=HRvThx1rlfgpNkvnzIidizq8oOsgN_6rnY6S8RdCAFw,8857
|
@@ -498,7 +498,7 @@ tomwer/gui/control/datawatcher/datawatcher.py,sha256=Z4nZfBZs3FplTgyXfroWDaXdq0f
|
|
498
498
|
tomwer/gui/control/datawatcher/datawatcherobserver.py,sha256=DAog4ZppGMgsNxCI3V-N93aI2qIgaMju9dOunNqtqww,9250
|
499
499
|
tomwer/gui/control/series/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
500
500
|
tomwer/gui/control/series/nxtomoconcatenate.py,sha256=YyJssAnQauRhQ1jBg63uj1pXcdo2IsktebaQvpgx8YA,3131
|
501
|
-
tomwer/gui/control/series/seriescreator.py,sha256=
|
501
|
+
tomwer/gui/control/series/seriescreator.py,sha256=UPQ9o21tdl09gyU9-b4qoga42_9YGAJXg8jaUMb7NLI,34131
|
502
502
|
tomwer/gui/control/series/serieswaiter.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
503
503
|
tomwer/gui/control/series/test/test_creator.py,sha256=rKry0n7UxRLFCiCtOv2ANGV0Qufztgnzl3OWBtXQCEM,14431
|
504
504
|
tomwer/gui/control/series/test/test_nxtomo_concatenate.py,sha256=rZqOlAhAdlKaboDHwVB6j733XVT8R623cGPWNIIbvOo,669
|
@@ -518,7 +518,7 @@ tomwer/gui/control/tests/test_volume_dialog.py,sha256=AEbawlIr05oqXhuqYEgJDEVIf5
|
|
518
518
|
tomwer/gui/control/tests/test_volumeselector.py,sha256=cF33xpGiRM2iORHxgGWuTDHLeV12QqaHlBbxJVqwWuI,2090
|
519
519
|
tomwer/gui/dataportal/__init__.py,sha256=Ql9igxJsXj6yiykmscFWR1DTH93MrNRctdTC1liPAO4,37
|
520
520
|
tomwer/gui/dataportal/createscreenshots.py,sha256=1XcvaTxZ4dZwWtcyQW4dBkUf9HpJI6PlowZHsJyuzRg,3128
|
521
|
-
tomwer/gui/dataportal/gallery.py,sha256=
|
521
|
+
tomwer/gui/dataportal/gallery.py,sha256=M289IoMX9ToHm1dNltGBRnMCn78b8p4KqFsoPkk3aT0,4861
|
522
522
|
tomwer/gui/dataportal/outputformat.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
523
523
|
tomwer/gui/dataportal/publish.py,sha256=LnRHEUiBc6hLyCbCjwjmYUNowr01rrnjayqwQeLPCkw,3731
|
524
524
|
tomwer/gui/dataportal/tests/test_create_screenshots_gui.py,sha256=-1UL8VvMLGfPEvX5yg1VfJJMSVVxjIIAfLuYp4SzeuE,714
|
@@ -531,81 +531,81 @@ tomwer/gui/dialog/QVolumeDialog.py,sha256=4SqohhUnQb9gkIxdi_0R4X3McsNK_v_tVntHj7
|
|
531
531
|
tomwer/gui/dialog/__init__.py,sha256=gGi_AduLD4h7DPOYLVkiSDfy-F5jB7alL1wWbKgPs60,88
|
532
532
|
tomwer/gui/edit/__init__.py,sha256=Pe27j1z4qWIXC9gSUcMDo3dgL5SXyxs_AFUFUo9zOxA,92
|
533
533
|
tomwer/gui/edit/dkrfpatch.py,sha256=WC7bg7cSuUahNbyLgFGmE9_YWoABWC095ctE9Mqvsb8,16010
|
534
|
-
tomwer/gui/edit/imagekeyeditor.py,sha256=
|
535
|
-
tomwer/gui/edit/nxtomoeditor.py,sha256=
|
534
|
+
tomwer/gui/edit/imagekeyeditor.py,sha256=Gt6Py6O54zWwXhMUjoqshvW6ZCft-qzHVI_nd1FdSmY,28102
|
535
|
+
tomwer/gui/edit/nxtomoeditor.py,sha256=CQvBJGf-d5exoGQTvD2QNqvITzI4nuTMJgW5ySeT71k,36606
|
536
536
|
tomwer/gui/edit/nxtomowarmer.py,sha256=GZZyP9XyX2Lpw9Lhtp_JEWZFHVVNtEmAgv5-IyCmPGE,2354
|
537
537
|
tomwer/gui/edit/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
538
538
|
tomwer/gui/edit/tests/test_dkrf_patch.py,sha256=L0fO2nqqK74EOIZTPQKjO03qsAiXbqjj7FCGMrpRz3k,6685
|
539
539
|
tomwer/gui/edit/tests/test_image_key_editor.py,sha256=6sIGM_DjU_KjspnVKB2UDhWh_BLDhYP8rS6U1fAZXkk,4647
|
540
|
-
tomwer/gui/edit/tests/test_nx_editor.py,sha256=
|
540
|
+
tomwer/gui/edit/tests/test_nx_editor.py,sha256=y4_-g1-8rj0NkhAZ9HeebH-CIcUrvrH3q-s2RnBRQMo,17501
|
541
541
|
tomwer/gui/reconstruction/__init__.py,sha256=Ozf9bYay5hVhe1clExeM_MLhcAuu624i5BP1xonWlB0,95
|
542
|
-
tomwer/gui/reconstruction/sacommon.py,sha256=
|
542
|
+
tomwer/gui/reconstruction/sacommon.py,sha256=8-xaFjmtvxzJSWRLl985IcaCYVXQ_Kq-Rp91nYoW0Pc,5990
|
543
543
|
tomwer/gui/reconstruction/axis/AxisMainWindow.py,sha256=7w2LhdQ1pa8vU9U-XTA3ohGQfYKk5ETZ79s_xl4Zxx8,9641
|
544
544
|
tomwer/gui/reconstruction/axis/AxisOptionsWidget.py,sha256=M47xflZ68KkTDg8tksFt8n7ZFVIr8tJxstlPyG4Odq0,12168
|
545
545
|
tomwer/gui/reconstruction/axis/AxisSettingsWidget.py,sha256=7GpHteE2j9RUo-jUQoJdXJ-GnIi9VnY13Lveq3mvd1M,28120
|
546
546
|
tomwer/gui/reconstruction/axis/AxisWidget.py,sha256=nkORZHLo8D3Sk8j-8QVr9l3Qse66s-Nv-tB6kCkSMTY,19794
|
547
|
-
tomwer/gui/reconstruction/axis/CalculationWidget.py,sha256=
|
547
|
+
tomwer/gui/reconstruction/axis/CalculationWidget.py,sha256=G6zru4IvDfv4tC7u9-sPLCojN1JRpfb6jDTtPjV3wCc,8635
|
548
548
|
tomwer/gui/reconstruction/axis/CompareImages.py,sha256=jqzlMBU_tfIdR1yHuZa8Avt8Te0EPBkjI6R4TY6kIlw,11425
|
549
549
|
tomwer/gui/reconstruction/axis/ControlWidget.py,sha256=w2kNLuIhQhGT3KpEYWWq4XJks3Kr7R2aOPCTKz4je4U,10709
|
550
|
-
tomwer/gui/reconstruction/axis/EstimatedCORWidget.py,sha256=
|
551
|
-
tomwer/gui/reconstruction/axis/EstimatedCorComboBox.py,sha256=
|
552
|
-
tomwer/gui/reconstruction/axis/InputWidget.py,sha256=
|
550
|
+
tomwer/gui/reconstruction/axis/EstimatedCORWidget.py,sha256=U6CjfLSHT9Og7TWzywTpfmlDDofPBu3NsjmCOUkH2OI,17116
|
551
|
+
tomwer/gui/reconstruction/axis/EstimatedCorComboBox.py,sha256=GNLjyefJP837hdXlcImpsM_YByPTQHymDVwD_phAQUg,4429
|
552
|
+
tomwer/gui/reconstruction/axis/InputWidget.py,sha256=T13DMgwJ7jx0ag73zD21Pk8F97JlKVTG4ey9GejtuXQ,13031
|
553
553
|
tomwer/gui/reconstruction/axis/ManualFramesSelection.py,sha256=b7-OjYyLuMQxG19AuvUNdwhSV5ewwfC4s9Yn8-6yZLQ,6481
|
554
554
|
tomwer/gui/reconstruction/axis/__init__.py,sha256=0YJJmL_suumgRcTA-uUNt6HStVM96ST3SJei7domThk,104
|
555
555
|
tomwer/gui/reconstruction/darkref/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
556
556
|
tomwer/gui/reconstruction/darkref/darkrefcopywidget.py,sha256=SRZAo7gCW_b-jta_QZDsr_L6WUkRKer8TAy7pZz8e0Y,10661
|
557
|
-
tomwer/gui/reconstruction/darkref/darkrefwidget.py,sha256=
|
557
|
+
tomwer/gui/reconstruction/darkref/darkrefwidget.py,sha256=5sAJDCI-v1qFOkQlm5B2g9091T4cXy6eA1zYjFKs9iw,15123
|
558
558
|
tomwer/gui/reconstruction/nabu/__init__.py,sha256=v2WxaBpu2zpGu7DEV96zaKAtHgRlcpORuAG2S0iF9O0,44
|
559
|
-
tomwer/gui/reconstruction/nabu/castvolume.py,sha256=
|
559
|
+
tomwer/gui/reconstruction/nabu/castvolume.py,sha256=0L8y8fuy_S9RulDTFsUCbViKsgcUZBZSpvwXJgbzhlw,14946
|
560
560
|
tomwer/gui/reconstruction/nabu/check.py,sha256=5DYLlVCyXm3ax5VgogX79n1Oyl3O_JUvZ5KhZx2lOv0,3384
|
561
561
|
tomwer/gui/reconstruction/nabu/helical.py,sha256=TAVPcuZdgtZSz37ESqi_yuLhYuNnGde_0drvjTntahs,3708
|
562
|
-
tomwer/gui/reconstruction/nabu/nabuflow.py,sha256=
|
562
|
+
tomwer/gui/reconstruction/nabu/nabuflow.py,sha256=mnFFd9z7IC9FFZ3xcOr-6g2hvY0R7PtnFI-AMgWqHhI,14977
|
563
563
|
tomwer/gui/reconstruction/nabu/platform.py,sha256=eSPs2yUfBSHsqZ8bYY_BJ7zuRXc5sxXA4lRxlQaFBz0,3859
|
564
|
-
tomwer/gui/reconstruction/nabu/slices.py,sha256=
|
564
|
+
tomwer/gui/reconstruction/nabu/slices.py,sha256=fnWfbF2O7f5D4WOVcx4L1pu9WVRN_4A_122b8R-R_48,24291
|
565
565
|
tomwer/gui/reconstruction/nabu/slurm.py,sha256=yfJD8KgX45Be5CUi6bn2CdocrQemJPxDYBBqoLoXqn0,1268
|
566
|
-
tomwer/gui/reconstruction/nabu/volume.py,sha256=
|
566
|
+
tomwer/gui/reconstruction/nabu/volume.py,sha256=OGstMDOd7DHY0PVUJdPRxOtSH7SaJyy7VNWU1F6ci6g,17826
|
567
567
|
tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py,sha256=WgEFXIrUDhX0vpBNlKiymHEY9p1DMdk4QZkvnXIC8yk,77
|
568
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/base.py,sha256=
|
569
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py,sha256=
|
570
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py,sha256=
|
568
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/base.py,sha256=7jB8VKVk5zt2QP4z1Vx2k7vLfPN5jjeGnCL_dLXr1J4,2133
|
569
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py,sha256=_2eDt-Y5LaJ5J0Q2wm0sIFQuSHXYjPqQGYC28Iqr4LE,13095
|
570
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py,sha256=5tCkwvgCv_Rdt7yP4ZUrq9ZGKE7Yy9Ht-n7XvCGIoTw,9048
|
571
571
|
tomwer/gui/reconstruction/nabu/nabuconfig/output.py,sha256=0SShYqvFj-motxTw20e3I1Z0WiierSqgOsN15qwe-TY,11907
|
572
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/phase.py,sha256=
|
573
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py,sha256=
|
574
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py,sha256=
|
575
|
-
tomwer/gui/reconstruction/nabu/test/test_cast_volume.py,sha256=
|
572
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/phase.py,sha256=t4rVi6DCwRkrfGv_9hD1SWMwu9CMpzxjAwyH_YmC3Gw,16238
|
573
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py,sha256=3FME_SNO-cvek-hzuhh87cesuH3cdfqBI8w-fgwBO4U,32556
|
574
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py,sha256=W0EXvvEgtlOtxgg7CjsSj2aTjfpRwYfQ_I1fDX0cPxE,42571
|
575
|
+
tomwer/gui/reconstruction/nabu/test/test_cast_volume.py,sha256=Gtz_LduqKQNiVuVYrvtoPkE-DgG9QotS1mK-siSl8HU,3451
|
576
576
|
tomwer/gui/reconstruction/nabu/test/test_check.py,sha256=KXg1Gg4FVjQ9GkBOgb0ZJh6_c3JMeJTtyX5UVY6vdms,2318
|
577
577
|
tomwer/gui/reconstruction/nabu/test/test_ctf.py,sha256=uiJznrY6ScH51xaaSUFfplg9XJcFacczIV8_7k9tuRg,1554
|
578
578
|
tomwer/gui/reconstruction/nabu/test/test_helical.py,sha256=6vB_xXJOuNPHbXKLw8JWUtl-BB-Ntm8xkNEMV08ocEM,754
|
579
579
|
tomwer/gui/reconstruction/nabu/test/test_nabu_preprocessing.py,sha256=OcTJ6-GQrIMETlezvJ7HlWE7_eWMKdfbfueohl_lZ-c,2258
|
580
580
|
tomwer/gui/reconstruction/normalization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
581
|
-
tomwer/gui/reconstruction/normalization/intensity.py,sha256=
|
581
|
+
tomwer/gui/reconstruction/normalization/intensity.py,sha256=mKt7gLsIAljb3XQAl_szJJItjOUPAt2LL5VaIY8g4Iw,32476
|
582
582
|
tomwer/gui/reconstruction/normalization/test/test_intensity.py,sha256=CP9GxvaR7QrVfU6VHyDY_4OkK-oNwh13XJ1tYs5Lebo,3420
|
583
583
|
tomwer/gui/reconstruction/saaxis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
584
|
-
tomwer/gui/reconstruction/saaxis/corrangeselector.py,sha256=
|
585
|
-
tomwer/gui/reconstruction/saaxis/dimensionwidget.py,sha256=
|
584
|
+
tomwer/gui/reconstruction/saaxis/corrangeselector.py,sha256=JU4SRCAxBNBI315sX-1omS96YdpvQlegiIXBXvs6V9U,31775
|
585
|
+
tomwer/gui/reconstruction/saaxis/dimensionwidget.py,sha256=AqOrVS2-XHM1aA2zOmMG9g1fMKX5t7jRGm4Cs-rNZ6g,8133
|
586
586
|
tomwer/gui/reconstruction/saaxis/saaxis.py,sha256=oKHoJ7Z8xZS4BIQ8A6Cn5SijPNH7C7S56Z0zPSEZ2Fo,20122
|
587
587
|
tomwer/gui/reconstruction/saaxis/sliceselector.py,sha256=NMKCVc2x2cMrPxm801M3hl2qCXtxuvIWTjxyUx1mRxE,10883
|
588
588
|
tomwer/gui/reconstruction/sadeltabeta/__init__.py,sha256=74VkZ1KfTqXmfQReLkjJenvuEZFkhHDqK6BZJHhOeS4,57
|
589
589
|
tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py,sha256=r2zDJPnRyiJ8ZX-iO0WbXcsNSlzH3xLp-5S4L3noCRc,19470
|
590
590
|
tomwer/gui/reconstruction/scores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
591
591
|
tomwer/gui/reconstruction/scores/control.py,sha256=SVWMruB--sa_LSM1oZhjoFM5ci1oQTe9XqXOyI8iR0U,1496
|
592
|
-
tomwer/gui/reconstruction/scores/scoreplot.py,sha256=
|
592
|
+
tomwer/gui/reconstruction/scores/scoreplot.py,sha256=_mHvuc8EoSgEFiQkDJM9p21CLkgLe3c3d-bvPfQ0mFc,31166
|
593
593
|
tomwer/gui/reconstruction/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
594
594
|
tomwer/gui/reconstruction/tests/test_axis.py,sha256=h0u_tTnQp57rg4oFtwjGSYNw5IujoxydOpnvNd98INA,7498
|
595
595
|
tomwer/gui/reconstruction/tests/test_nabu.py,sha256=MRSxOYRbiZQ4P3jvSj_YMQofK5y_IgHNIb6TmuLFqAc,13644
|
596
|
-
tomwer/gui/reconstruction/tests/test_saaxis.py,sha256=
|
596
|
+
tomwer/gui/reconstruction/tests/test_saaxis.py,sha256=dQjhULF913WMevo0ePIy6JQbnrP6zGVnde9XLRLBtFM,6792
|
597
597
|
tomwer/gui/reconstruction/tests/test_sadeltabeta.py,sha256=96tE_gxIcmp0qDXQmIwSEkYl3Js7dT2CyUH1doyjGc0,4491
|
598
598
|
tomwer/gui/samplemoved/__init__.py,sha256=jNA03mYWfP3_S1MRet6ijYe5DNCTK3Br7-5yrW3oEG4,8240
|
599
599
|
tomwer/gui/samplemoved/selectiontable.py,sha256=CzQnJBxfIeoZSw8aR0VvrsaIg6fozREI8YRXdzQbA7Q,7968
|
600
|
-
tomwer/gui/stitching/SingleAxisStitchingWidget.py,sha256=
|
601
|
-
tomwer/gui/stitching/StitchingOptionsWidget.py,sha256=
|
600
|
+
tomwer/gui/stitching/SingleAxisStitchingWidget.py,sha256=t7xBxs9DR5f9bcJ5wvuMUB2u__AFHIJenZpncbvR8VM,13917
|
601
|
+
tomwer/gui/stitching/StitchingOptionsWidget.py,sha256=XPobLQhQMM_gUkgaBsDX4DAvuMJaavGrFOyIDBVoZbU,18175
|
602
602
|
tomwer/gui/stitching/StitchingWindow.py,sha256=tm7aadWGUcmHnVXws1ifJtbb835U3dF4mLZGiP3VQSM,25103
|
603
603
|
tomwer/gui/stitching/__init__.py,sha256=jYSG4DSAtMGm9Yuf4MVdlSdMO8JKOp_t-8NKsnR92LU,45
|
604
604
|
tomwer/gui/stitching/action.py,sha256=7CkACYKsRt3c_6PgrmQVZwSi9UwvGrQVUymJytHbqcE,1659
|
605
|
-
tomwer/gui/stitching/alignment.py,sha256=
|
605
|
+
tomwer/gui/stitching/alignment.py,sha256=JwPH8-uzIN4bxGiTY7H84cV0A3qrp61exuqn8_xObD0,3951
|
606
606
|
tomwer/gui/stitching/axisorderedlist.py,sha256=IEJoOXlf8wpWkJijLjF-jGRMHOpQ8lGVuajvIqc670s,18045
|
607
607
|
tomwer/gui/stitching/metadataholder.py,sha256=jeR6_DM529aEmxQLeLM3CB-49GHq6KLY2Nc24kSC-HA,913
|
608
|
-
tomwer/gui/stitching/normalization.py,sha256=
|
608
|
+
tomwer/gui/stitching/normalization.py,sha256=Xbc6CXMODyrKi2Ip2QA_aWGRR0RfZzzi3Zjq5VRdBkI,4480
|
609
609
|
tomwer/gui/stitching/preview.py,sha256=no74hLS4d_mDVwMXkO7k5aNn-B3Y4h-Jx0dlM20rhbE,2292
|
610
610
|
tomwer/gui/stitching/singleaxis.py,sha256=TAZXE462gvVf5giiICU91qlniWLxei58iGmn7DKl9pY,1674
|
611
611
|
tomwer/gui/stitching/stitchandbackground.py,sha256=5LlmmugIKKVtEl4rOhpiH5Kk3R89CHMyAa2GJp50gOs,5987
|
@@ -613,35 +613,35 @@ tomwer/gui/stitching/stitching_preview.py,sha256=QqWfw5jOqpmfEDCR-VGrbTtGTU9l06q
|
|
613
613
|
tomwer/gui/stitching/stitching_raw.py,sha256=imFJZyoVQ8H9JgdS02UoNcudvalfCQCAHVvCfh2UGIk,22363
|
614
614
|
tomwer/gui/stitching/utils.py,sha256=ZgfKHLyH7l81Ry-4M5ajdwqdeos_J4g4Ee3j3yoXcJo,599
|
615
615
|
tomwer/gui/stitching/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
616
|
-
tomwer/gui/stitching/config/axisparams.py,sha256=
|
617
|
-
tomwer/gui/stitching/config/output.py,sha256=
|
618
|
-
tomwer/gui/stitching/config/positionoveraxis.py,sha256=
|
619
|
-
tomwer/gui/stitching/config/stitchingstrategies.py,sha256=
|
620
|
-
tomwer/gui/stitching/config/tomoobjdetails.py,sha256=
|
616
|
+
tomwer/gui/stitching/config/axisparams.py,sha256=PpE72t4lE05aelPz3bsNBQgn34xKVovTvM16obYesQs,8004
|
617
|
+
tomwer/gui/stitching/config/output.py,sha256=ibAZ9nrtFnC9dN9MpafDr4yUIykpa3HwqcmQCJNx9v4,6165
|
618
|
+
tomwer/gui/stitching/config/positionoveraxis.py,sha256=o2shOMeHBY86gRQhqQDSuQw9MM5akNYVYhW4Ds3RrHA,16631
|
619
|
+
tomwer/gui/stitching/config/stitchingstrategies.py,sha256=UtmdBJ6jHeHTwdwbW4n9Edho9O_5HkCSNc9ZK7omTOE,4551
|
620
|
+
tomwer/gui/stitching/config/tomoobjdetails.py,sha256=aOufJsG_E7nIY959GksFya728JWTfVuMt9Q2AqNDYVw,15013
|
621
621
|
tomwer/gui/stitching/config/tests/test_axisparams.py,sha256=btumHdTFr2xmiFZ-GbWAuRy6kjwYUilMrluhiE0repM,738
|
622
|
-
tomwer/gui/stitching/tests/test_ZStitchingWindow.py,sha256=
|
622
|
+
tomwer/gui/stitching/tests/test_ZStitchingWindow.py,sha256=ebLD7CLB8KcMeHOt0-5l3rP93i2kC9jeHHERxeV_V8k,3189
|
623
623
|
tomwer/gui/stitching/tests/test_axis_ordered_list.py,sha256=ueXQ-YrP0S325PrJiPLdsM4GdzhZm8lTzb-P9hJ3TEY,700
|
624
624
|
tomwer/gui/stitching/tests/test_normalization.py,sha256=m4anggtaZ32JSfZ5yHgis5CD0HYpjLvS6bpDitQv9ec,643
|
625
|
-
tomwer/gui/stitching/tests/test_preview.py,sha256=
|
625
|
+
tomwer/gui/stitching/tests/test_preview.py,sha256=Uwx5PZ2uN-S6hgqA4Oad-zw6_TmQIiKx1lehWcxBLUw,2464
|
626
626
|
tomwer/gui/stitching/tests/test_stitching_raw.py,sha256=Yh69Av36GMJdpxstaMGprjRogugh7jicSTgC2pSaSBs,3699
|
627
|
-
tomwer/gui/stitching/tests/utils.py,sha256=
|
627
|
+
tomwer/gui/stitching/tests/utils.py,sha256=hGmtV2Q-xjd5tT-O-VUuPIDqsfHnZPFGuMNb0DNAsio,3667
|
628
628
|
tomwer/gui/stitching/z_stitching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
629
|
-
tomwer/gui/stitching/z_stitching/fineestimation.py,sha256=
|
629
|
+
tomwer/gui/stitching/z_stitching/fineestimation.py,sha256=KDQ75meWKwioqcqytj7tSVa8DCaoiVBqcSViP26o-5s,7887
|
630
630
|
tomwer/gui/stitching/z_stitching/tests/test_fine_estimation.py,sha256=vHR8e2jvq_mlV6621DDSMpVZ5khNhsfbTplCBgtGf_k,1207
|
631
|
-
tomwer/gui/stitching/z_stitching/tests/test_raw_estimation.py,sha256=
|
632
|
-
tomwer/gui/stitching/z_stitching/tests/test_stitching_window.py,sha256=
|
631
|
+
tomwer/gui/stitching/z_stitching/tests/test_raw_estimation.py,sha256=lYsGj9duV3UjN62YUubocHctHTbtXsYpF3fCNee4Rw0,8581
|
632
|
+
tomwer/gui/stitching/z_stitching/tests/test_stitching_window.py,sha256=KOkwsV_iUd02x7qadzXjAB73rGcSZO2FDJEOVJGGI8I,1494
|
633
633
|
tomwer/gui/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
634
634
|
tomwer/gui/tests/test_axis_gui.py,sha256=7Sz7LKTADuRCxaPYFGes22-0AItYwfrcd6kgk4XJQaM,1535
|
635
635
|
tomwer/gui/tests/test_qfolder_dialog.py,sha256=hwN7uEDUYoGsHeJgjTvgMLV21umt_LTIemDsUTU2UvA,352
|
636
636
|
tomwer/gui/utils/RangeWidget.py,sha256=HERjGePh_LxkJEELt2ZVOL_D8G_0xmaP4OotZlASPEo,1327
|
637
637
|
tomwer/gui/utils/__init__.py,sha256=zRGvzYC0R676iDAjHIERQJlV4YgTcsXc3G34f6cUCK8,66
|
638
|
-
tomwer/gui/utils/buttons.py,sha256=
|
638
|
+
tomwer/gui/utils/buttons.py,sha256=czf14thj6yC9oqrSga77pBDFUtizuAlsIG39GSfpIss,7361
|
639
639
|
tomwer/gui/utils/completer.py,sha256=XQGVSiUdLa1MfgXPDY5qfcTxtjVerxmVKXmWDb-kQ-I,3606
|
640
|
-
tomwer/gui/utils/flow.py,sha256=
|
640
|
+
tomwer/gui/utils/flow.py,sha256=DO9QhS_0dOxMArowqDGU5yZ_a36CsvwQUoFPwuxjxkE,10646
|
641
641
|
tomwer/gui/utils/gpu.py,sha256=R2sRA77zyxdy5bVYGNltQpKS_9wuaj9eIn6rglsWGWg,2223
|
642
642
|
tomwer/gui/utils/illustrations.py,sha256=SoLAGBIrdYAu44qIZM8kvC74naOTJzUyAxSUkpblyEw,3134
|
643
643
|
tomwer/gui/utils/inputwidget.py,sha256=E8S4XwuIFxdm7ylBzqQVcJtEYif5CgMx5RTAyQ9Vs8E,22505
|
644
|
-
tomwer/gui/utils/loadingmode.py,sha256=
|
644
|
+
tomwer/gui/utils/loadingmode.py,sha256=sO7YckBfqJtR33v1P0AnmY1tXSdI6R5Hqcn-cAOlsyM,2917
|
645
645
|
tomwer/gui/utils/qt_utils.py,sha256=QMXte_vdCEwr4Vybt5sopczQ_OuRd1W5h6SydqFH0F8,538
|
646
646
|
tomwer/gui/utils/sandboxes.py,sha256=QfSRhL1KrFhS2Wr734Tzvp1OjTp82Ozc0ULr-JycFlI,6145
|
647
647
|
tomwer/gui/utils/scandescription.py,sha256=T4-tu6B8ZhpE_9sMdZ_4V7iS81gyEQxi3Yenik2I24o,2009
|
@@ -649,9 +649,9 @@ tomwer/gui/utils/scrollarea.py,sha256=EcHwz5eR0RJW4swhm-NuIEj4tcvkpdiFznXF0490gq
|
|
649
649
|
tomwer/gui/utils/slider.py,sha256=NLooxIa_2dMv60UAt_PV2BKcd15WuNv1EiV1JRdVcu0,2154
|
650
650
|
tomwer/gui/utils/splashscreen.py,sha256=Wt6lDby3irZn6Vc52whPRTbJOzmMA66VH6d5cIXy_dI,489
|
651
651
|
tomwer/gui/utils/step.py,sha256=epEKQwj2byRFH_Lc2XUuMGOVcrKR0m1iFP7HPqb5iG0,5397
|
652
|
-
tomwer/gui/utils/unitsystem.py,sha256=
|
652
|
+
tomwer/gui/utils/unitsystem.py,sha256=bEdT74iTpCtPTg725f9B2-nFovYVVmC8FpEiRwLdgBQ,6277
|
653
653
|
tomwer/gui/utils/utils.py,sha256=FbzvEkJacSdZXe4lvrYOge9csQGx50hH-R8gbx5E0sI,2687
|
654
|
-
tomwer/gui/utils/vignettes.py,sha256=
|
654
|
+
tomwer/gui/utils/vignettes.py,sha256=5huW8paiKmHt_0CTZTM2ahXuSZl6C7YlGTIYsY-t32g,17781
|
655
655
|
tomwer/gui/utils/waiterthread.py,sha256=lyRCzVDAyxquO3JbXxDhVTCv_YjzOQd7PAPsGWjKBrE,494
|
656
656
|
tomwer/gui/utils/lineselector/__init__.py,sha256=GZ847ef5X2wk_sAHxg6h24TarPYmb4NZjQI3jjkc7jE,75
|
657
657
|
tomwer/gui/utils/lineselector/lineselector.py,sha256=2G1LoVAbnahokLhtT_EbFTqu_oHKctzXCEVgMwD34Lo,6966
|
@@ -660,24 +660,24 @@ tomwer/gui/utils/tests/test_line_selector.py,sha256=42EbSc81A6uYwTixuZr0R4pexAX3
|
|
660
660
|
tomwer/gui/utils/tests/test_splashscreen.py,sha256=sJZzsvJ1-VpNuQ2wifRz4a6PbU7rZQVXZzMVMGYpZ0A,253
|
661
661
|
tomwer/gui/utils/tests/test_vignettes.py,sha256=xgTmE7QB5db12Wqe32v5zA7hx0PtE5bqQbHtStVzerk,2265
|
662
662
|
tomwer/gui/visualization/__init__.py,sha256=SSJ9-dlyNdnairP1L2s4909HDu2ROntVHWAus7qM-Zo,95
|
663
|
-
tomwer/gui/visualization/dataviewer.py,sha256=
|
663
|
+
tomwer/gui/visualization/dataviewer.py,sha256=4Wdh_Am8FPFmg_f_v8W8H1D7W9XFnc2UDGtVR5bJPCA,13459
|
664
664
|
tomwer/gui/visualization/fullscreenplot.py,sha256=PwPbhbdU23_ngZ7FM_lhM7zxY6Xd1AbdACGVG6YfwrM,3637
|
665
665
|
tomwer/gui/visualization/imagestack.py,sha256=DBMEFBo0BbdFCscL8EMSumXkWVl_p7_uk4UvEtsSWRw,15777
|
666
666
|
tomwer/gui/visualization/nxtomometadata.py,sha256=IG_VTrmw6k1LMWtlyH80mPUe2t69zaiqoFyBLKC07TI,559
|
667
|
-
tomwer/gui/visualization/reconstructionparameters.py,sha256=
|
668
|
-
tomwer/gui/visualization/scanoverview.py,sha256=
|
667
|
+
tomwer/gui/visualization/reconstructionparameters.py,sha256=ZkIdRHD5m9U9WMz_wRTxPjVHEcc9akxWqX_Xml9JMaQ,9602
|
668
|
+
tomwer/gui/visualization/scanoverview.py,sha256=recZLPN01qRLGE9tmWcpkjmukl8uGMCcOVoS7Es6qrU,8868
|
669
669
|
tomwer/gui/visualization/sinogramviewer.py,sha256=M91xw63ptfG1erPt6jvFH5uqmV6KUm1B4xreco6Ixto,8380
|
670
670
|
tomwer/gui/visualization/tomoobjoverview.py,sha256=8tsVhTZw0upDSYzE1W8VXCWMBmSFcEP7SlcGA6Nl6ig,1995
|
671
671
|
tomwer/gui/visualization/volumeoverview.py,sha256=k0OLdw5dvbDlWFnk6I8TlrJu03dmKToCZVEtmAh_U9M,2496
|
672
672
|
tomwer/gui/visualization/volumeviewer.py,sha256=CVfRj_azmrfoSztjX3l6nnQ9Yoyk9yhNbREoXRRq7eY,17648
|
673
673
|
tomwer/gui/visualization/diffviewer/__init__.py,sha256=rZ7qOTfAChU3FouCdkZllXT9ZZqTdo1XhLZMfmOqUAE,39
|
674
|
-
tomwer/gui/visualization/diffviewer/diffviewer.py,sha256=
|
675
|
-
tomwer/gui/visualization/diffviewer/shiftwidget.py,sha256=
|
674
|
+
tomwer/gui/visualization/diffviewer/diffviewer.py,sha256=um3ArvYBcTPk264ercS2LIRW2MtoSRayb-TbXhhW1XA,20513
|
675
|
+
tomwer/gui/visualization/diffviewer/shiftwidget.py,sha256=qBA-uyhuUMHH8StRMdpkZuQ3zTxD5goD6Wjb-4VxK40,19531
|
676
676
|
tomwer/gui/visualization/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
677
677
|
tomwer/gui/visualization/test/test_dataviewer.py,sha256=LhE9j5JJOt1A6FMfUUR8V9czl1sy7T-4WJX7w1ASPLs,1128
|
678
678
|
tomwer/gui/visualization/test/test_diffviewer.py,sha256=EuFdUrYgtS95GWQ_UTBFWwNl2ZVeq0WaIvTjQOgJfvc,2218
|
679
|
-
tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py,sha256=
|
680
|
-
tomwer/gui/visualization/test/test_reconstruction_parameters.py,sha256=
|
679
|
+
tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py,sha256=SPsCdgmZgunpZyTUwV8CwDfAyzcOShhcZt_VazExjE8,2740
|
680
|
+
tomwer/gui/visualization/test/test_reconstruction_parameters.py,sha256=AHxeeeivfGfqHKbcF-OaH7T1oGro1IRUm9cVsL61Ceo,1932
|
681
681
|
tomwer/gui/visualization/test/test_sinogramviewer.py,sha256=NwJI7r6chsnmp5mZOIUCTl1o3c_CRBnD2WB6dC9THlU,1750
|
682
682
|
tomwer/gui/visualization/test/test_stacks.py,sha256=OrchwJ0L0Sqi9f3o8_P5LO-4bI6JxC-P26DSFXcA2Js,6214
|
683
683
|
tomwer/gui/visualization/test/test_volumeviewer.py,sha256=ws8m3JczvpwCJygXqBkxSiUPwLtD_8Q_KWNOsIXGu5w,2413
|
@@ -689,6 +689,7 @@ tomwer/io/utils/tomoobj.py,sha256=PGcTc2nMDMzKGvL7u5LgIMc9MYhJwLN9yecA1gttmzE,28
|
|
689
689
|
tomwer/io/utils/utils.py,sha256=BGXWRMl0l0VNHJDo5EA33gs9IHLiVCYbc4ThtU8-xPU,9292
|
690
690
|
tomwer/io/utils/test/test_raw_and_processed_data.py,sha256=2TgR3GZZ1PJ2wlyCqRU4qxh6XrQF-thvSqLZFMSV5es,552
|
691
691
|
tomwer/io/utils/test/test_utils.py,sha256=1EVY_N0vryUJYAe-l_CM0HbqQr-8tf7DAM6XyVy_4-U,1922
|
692
|
+
tomwer/model/dataset.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
692
693
|
tomwer/resources/__init__.py,sha256=yGvSUNzqb_1F2qvcXARl3m6yqZYagpeUWjOayUY4B8s,4613
|
693
694
|
tomwer/resources/gui/icons/Imagej_icon.png,sha256=JFDzPw20pzRrf6wLBnScXEcmTVt6orXPzwPwniKeVss,1618960
|
694
695
|
tomwer/resources/gui/icons/a.png,sha256=YrYFndLl3SUcsYNJDloU9YeJLBUkiMmgvDjDNJCMipI,3858
|
@@ -703,6 +704,7 @@ tomwer/resources/gui/icons/background.png,sha256=o4479aVkI5oI6LyiHVbRnFtnfwXP-wS
|
|
703
704
|
tomwer/resources/gui/icons/background.svg,sha256=ydyBCNZy_uQK7ro1L-e03qJyACmOb1GoB9OuFwlcIzg,10778
|
704
705
|
tomwer/resources/gui/icons/basic_user.png,sha256=9bHI9dU-6SVbVGxokRZTq4XyK8lNDwTd1HU2tSseM4w,4694
|
705
706
|
tomwer/resources/gui/icons/basic_user.svg,sha256=KOk8j33FLmie4cGpD4wJN9UYIKQfXOyK9_5_id6Iaa4,9246
|
707
|
+
tomwer/resources/gui/icons/borders.png,sha256=E8rkw2TiZSgBzSiuLz6DdFw6cyKOI7K5bIAcIz85J5k,1541
|
706
708
|
tomwer/resources/gui/icons/cfg_file_active.png,sha256=XA80Ltn7y9I5MlQHTrjKi-WO5RpI2_z-zrIgHUG0GO8,2150
|
707
709
|
tomwer/resources/gui/icons/cfg_file_active.svg,sha256=ExCvTt8QZ99q3B9WqfsMTqfylv_hjvvZjSB615GWkro,7344
|
708
710
|
tomwer/resources/gui/icons/cfg_file_inactive.png,sha256=9ezxJCR6jIQhFbJ8kOGSQ_klpwjp-rKiU135ddvtywo,1979
|
@@ -847,14 +849,15 @@ tomwer/synctools/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
847
849
|
tomwer/synctools/tests/test_darkRefs.py,sha256=1OgWaV-hgDmi4rkh0hxjCW_codBAnxNhp3KFyZAWFOI,14534
|
848
850
|
tomwer/synctools/tests/test_foldertransfer.py,sha256=ZFIJWSjgYAWw3ktzamid5DJZNnMkAV6Pj72dKG69cJc,12024
|
849
851
|
tomwer/synctools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
850
|
-
tomwer/synctools/utils/scanstages.py,sha256=
|
852
|
+
tomwer/synctools/utils/scanstages.py,sha256=xd27Y1mIcL9YGTHER7MX7oS_ky12R_y2fjIznT6p2rg,7797
|
853
|
+
tomwer/tasks/reconstruction/cleardarkflat.py,sha256=_V_x7W8vp1_AqqtQ9xk2VRgwlivn4IPTLEpWySjSZRE,1353
|
851
854
|
tomwer/tests/__init__.py,sha256=dPPaIvpzHssjwxsMzYJM_gxQ2e0cnRyQHXxi9ux6ZOY,19
|
852
855
|
tomwer/tests/conftest.py,sha256=0XlKfOrVtPg8VmyQn4BoK_mzcliFUtacDGLlZ5wD_PM,1912
|
853
856
|
tomwer/tests/datasets.py,sha256=QXQ3jSwgWzfq4CaELOSrk9kHg5GmrP7kGHsdOlNSEIE,336
|
854
857
|
tomwer/tests/test_scripts.py,sha256=LAVRe9PLj-8I-9upzd4QTXhktIpuaCFmVyw_e_Lhwrk,5117
|
855
858
|
tomwer/tests/test_utils.py,sha256=D0rNDSK6csEOYBY_7gD-4A3jp8rYAm8L1_Xg34A9I2s,305
|
856
859
|
tomwer/tests/utils.py,sha256=RAXx5A99WD4Vyuv_wjHBdr-Xu7UiThHRKw2eiB5GX10,107
|
857
|
-
tomwer/tests/app/test_stitching.py,sha256=
|
860
|
+
tomwer/tests/app/test_stitching.py,sha256=1T7Brq-BEHMpt_MzeAqOChIaWQsP1RqDofYWozJjQno,4146
|
858
861
|
tomwer/tests/orangecontrib/tomwer/widgets/test_conditions.py,sha256=J5039sm1slNiXoNyMNjBehrhjkp16mZ1UAL5wTDSz5w,2866
|
859
862
|
tomwer/tests/orangecontrib/tomwer/widgets/test_darkref.py,sha256=SB8WrfRVcTc6yB752KReMkOihY69yZC0_8EGPpIpkV4,7700
|
860
863
|
tomwer/tests/orangecontrib/tomwer/widgets/test_foldertransfert.py,sha256=ESiODdNiEbxbuLTdt1E9qgVV66qIS74uzrXYqwzq_wM,3370
|
@@ -880,7 +883,7 @@ tomwer/tests/orangecontrib/tomwer/widgets/debugtools/tests/test_object_inspector
|
|
880
883
|
tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_dark_flat_patch.py,sha256=XT38QPyYQU67lEJpyo0tK14CXgGhXJVw4BaLhgI-O_E,1509
|
881
884
|
tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_image_key_editor.py,sha256=Be-uWpEkceMGHjMgGN_UWaExbkR9iFkQyk_kHOFY_i0,806
|
882
885
|
tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_image_key_upgrader.py,sha256=YLtZ4o4FwQfXU0r1DzSXrAxFdgdeJV-EMOkTkmiwvzo,2211
|
883
|
-
tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_nxtomo_editor.py,sha256=
|
886
|
+
tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_nxtomo_editor.py,sha256=Bw99THwNdEG-W_JMACt6ejwmu95-on3QoszPQdif6pE,6047
|
884
887
|
tomwer/tests/orangecontrib/tomwer/widgets/other/tests/test_pythonscript.py,sha256=pqllpHnX8WDo37lBs1DawHdLL9QE6YpqTvnGYKu6LIs,941
|
885
888
|
tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_axis.py,sha256=NaP1WbkQ4yhL3pn8IdkOuusUPmLBSH8nXQ8GIcLwUSc,7015
|
886
889
|
tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_cast_volumeow.py,sha256=4urO8fmzwNUyaThujIOX7X37g-_DEtTerpirgMz_47o,1612
|
@@ -889,7 +892,7 @@ tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_delta_beta_s
|
|
889
892
|
tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_i_norm.py,sha256=909ajdn_p0MHZ7N6rLGu_E9hlrEwGYxTkJft4RLDbjU,4101
|
890
893
|
tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_helical_prepare_weights_double.py,sha256=ofao24KYcPCWoxR771MtfKv4EY3TjFLFgRtJtEgKYrI,621
|
891
894
|
tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_volume.py,sha256=0g0eCp6RDQlRSZe0me4LvGxTA66ChRtwQjCAWMmsvj8,2298
|
892
|
-
tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_widget.py,sha256=
|
895
|
+
tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_widget.py,sha256=qnwkZNk3Z-6es3mYLMoLdozV2dD5wbnk8-hht6Ef2VQ,3779
|
893
896
|
tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_sa_delta_beta.py,sha256=0trFahCrr57ZWCN8WJsJAmiTvg8dF-p7TMtRQkT35iM,3736
|
894
897
|
tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_saaxis.py,sha256=Bus-KJvmrWrMj--VyDGwLiKMOllDAuoR_TuUbFxnj4w,4191
|
895
898
|
tomwer/tests/orangecontrib/tomwer/widgets/stitching/tests/test_zstitching.py,sha256=wp7ZNtmHryB3hS01q79F4gJIr4phC_8GtFgSRCaHUzQ,11455
|
@@ -904,9 +907,9 @@ tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_volume_viewer
|
|
904
907
|
tomwer/tests/test_ewoks/test_conversion.py,sha256=a8cEWbErXiFCAkaapi0jeEoRKYxcFQCoa-Jr_u77_OM,3656
|
905
908
|
tomwer/tests/test_ewoks/test_single_node_execution.py,sha256=YBUHfiAnkciv_kjj7biC5fOs7c7ofNImM_azGMn4LZM,2813
|
906
909
|
tomwer/tests/test_ewoks/test_workflows.py,sha256=Eq80eexf5NVL7SzvwctLOaUeuQ8V3vDiFiHgbJA4Yb8,4871
|
907
|
-
tomwer-1.
|
908
|
-
tomwer-1.
|
909
|
-
tomwer-1.
|
910
|
-
tomwer-1.
|
911
|
-
tomwer-1.
|
912
|
-
tomwer-1.
|
910
|
+
tomwer-1.5.0.dist-info/licenses/LICENSE,sha256=62p1wL0n9WMTu8x2YDv0odYgTqeSvTd9mQ0v6Mq7lzE,1876
|
911
|
+
tomwer-1.5.0.dist-info/METADATA,sha256=8d2qzIPhdZazhUao2DtukyCdbqYtQ81BmdHX6Ed2ZGw,13456
|
912
|
+
tomwer-1.5.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
913
|
+
tomwer-1.5.0.dist-info/entry_points.txt,sha256=py3ZUWvGnWGc5c7Yhw_uBTm8Fmew0BDw3aQZnWMBNZI,500
|
914
|
+
tomwer-1.5.0.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
|
915
|
+
tomwer-1.5.0.dist-info/RECORD,,
|