phasorpy 0.7__cp314-cp314t-win_amd64.whl → 0.8__cp314-cp314t-win_amd64.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.
- phasorpy/__init__.py +1 -1
- phasorpy/_phasorpy.cp314t-win_amd64.pyd +0 -0
- phasorpy/_phasorpy.pyx +39 -1
- phasorpy/_utils.py +13 -5
- phasorpy/cluster.py +2 -2
- phasorpy/component.py +10 -6
- phasorpy/datasets.py +1 -1
- phasorpy/experimental.py +1 -163
- phasorpy/filter.py +966 -0
- phasorpy/io/__init__.py +2 -1
- phasorpy/io/_flimlabs.py +6 -6
- phasorpy/io/_leica.py +36 -34
- phasorpy/io/_ometiff.py +8 -6
- phasorpy/io/_other.py +3 -3
- phasorpy/io/_simfcs.py +11 -8
- phasorpy/lifetime.py +16 -16
- phasorpy/phasor.py +122 -642
- phasorpy/plot/_functions.py +6 -6
- phasorpy/plot/_lifetime_plots.py +1 -1
- phasorpy/plot/_phasorplot.py +17 -20
- phasorpy/plot/_phasorplot_fret.py +1 -1
- phasorpy/utils.py +1 -0
- {phasorpy-0.7.dist-info → phasorpy-0.8.dist-info}/METADATA +8 -7
- phasorpy-0.8.dist-info/RECORD +36 -0
- phasorpy-0.7.dist-info/RECORD +0 -35
- {phasorpy-0.7.dist-info → phasorpy-0.8.dist-info}/WHEEL +0 -0
- {phasorpy-0.7.dist-info → phasorpy-0.8.dist-info}/entry_points.txt +0 -0
- {phasorpy-0.7.dist-info → phasorpy-0.8.dist-info}/licenses/LICENSE.txt +0 -0
- {phasorpy-0.7.dist-info → phasorpy-0.8.dist-info}/top_level.txt +0 -0
phasorpy/plot/_functions.py
CHANGED
@@ -66,7 +66,7 @@ def plot_phasor(
|
|
66
66
|
show : bool, optional, default: True
|
67
67
|
Display figure.
|
68
68
|
**kwargs
|
69
|
-
|
69
|
+
Optional arguments passed to :py:class:`PhasorPlot`,
|
70
70
|
:py:meth:`PhasorPlot.plot`, :py:meth:`PhasorPlot.hist2d`, or
|
71
71
|
:py:meth:`PhasorPlot.contour` depending on `style`.
|
72
72
|
|
@@ -159,7 +159,7 @@ def plot_phasor_image(
|
|
159
159
|
show : bool, optional, default: True
|
160
160
|
Display figure.
|
161
161
|
**kwargs
|
162
|
-
|
162
|
+
Optional arguments passed to :func:`matplotlib.pyplot.imshow`.
|
163
163
|
|
164
164
|
Raises
|
165
165
|
------
|
@@ -327,7 +327,7 @@ def plot_signal_image(
|
|
327
327
|
show : bool, optional, default: True
|
328
328
|
Display figure.
|
329
329
|
**kwargs
|
330
|
-
|
330
|
+
Optional arguments passed to :func:`matplotlib.pyplot.imshow`.
|
331
331
|
|
332
332
|
Raises
|
333
333
|
------
|
@@ -432,7 +432,7 @@ def plot_image(
|
|
432
432
|
show : bool, optional, default: True
|
433
433
|
Display figure.
|
434
434
|
**kwargs
|
435
|
-
|
435
|
+
Optional arguments passed to :func:`matplotlib.pyplot.imshow`.
|
436
436
|
|
437
437
|
Raises
|
438
438
|
------
|
@@ -578,7 +578,7 @@ def plot_polar_frequency(
|
|
578
578
|
show : bool, optional, default: True
|
579
579
|
Display figure.
|
580
580
|
**kwargs
|
581
|
-
|
581
|
+
Optional arguments passed to :py:func:`matplotlib.pyplot.plot`.
|
582
582
|
|
583
583
|
"""
|
584
584
|
# TODO: make this customizable: labels, colors, ...
|
@@ -638,7 +638,7 @@ def plot_histograms(
|
|
638
638
|
show : bool, optional, default: True
|
639
639
|
Display figure.
|
640
640
|
**kwargs
|
641
|
-
|
641
|
+
Optional arguments passed to :func:`matplotlib.pyplot.hist`.
|
642
642
|
|
643
643
|
"""
|
644
644
|
ax = pyplot.subplots()[1]
|
phasorpy/plot/_lifetime_plots.py
CHANGED
phasorpy/plot/_phasorplot.py
CHANGED
@@ -219,7 +219,8 @@ class PhasorPlot:
|
|
219
219
|
Parameters
|
220
220
|
----------
|
221
221
|
**kwargs
|
222
|
-
|
222
|
+
Optional arguments passed to
|
223
|
+
:py:func:`matplotlib.axes.Axes.legend`.
|
223
224
|
|
224
225
|
"""
|
225
226
|
return self._ax.legend(**kwargs)
|
@@ -237,8 +238,7 @@ class PhasorPlot:
|
|
237
238
|
file : str, path-like, or binary file-like
|
238
239
|
Path or Python file-like object to write the current figure to.
|
239
240
|
**kwargs
|
240
|
-
|
241
|
-
:py:func:`matplotlib:pyplot.savefig`.
|
241
|
+
Optional arguments passed to :py:func:`matplotlib:pyplot.savefig`.
|
242
242
|
|
243
243
|
"""
|
244
244
|
pyplot.savefig(file, **kwargs)
|
@@ -269,8 +269,7 @@ class PhasorPlot:
|
|
269
269
|
Plot label.
|
270
270
|
May be a sequence if phasor coordinates are two dimensional arrays.
|
271
271
|
**kwargs
|
272
|
-
|
273
|
-
:py:meth:`matplotlib.axes.Axes.plot`.
|
272
|
+
Optional arguments passed to :py:meth:`matplotlib.axes.Axes.plot`.
|
274
273
|
|
275
274
|
Returns
|
276
275
|
-------
|
@@ -353,7 +352,7 @@ class PhasorPlot:
|
|
353
352
|
Imaginary component of phasor coordinates.
|
354
353
|
Must be of same shape as `real`.
|
355
354
|
**kwargs
|
356
|
-
|
355
|
+
Optional arguments passed to :py:meth:`numpy.histogram2d`
|
357
356
|
and :py:meth:`matplotlib.axes.Axes.pcolormesh`.
|
358
357
|
|
359
358
|
"""
|
@@ -392,7 +391,7 @@ class PhasorPlot:
|
|
392
391
|
Imaginary component of phasor coordinates.
|
393
392
|
Must be of same shape as `real`.
|
394
393
|
**kwargs
|
395
|
-
|
394
|
+
Optional arguments passed to :py:func:`numpy.histogram2d`
|
396
395
|
and :py:meth:`matplotlib.axes.Axes.contour`.
|
397
396
|
|
398
397
|
"""
|
@@ -426,7 +425,7 @@ class PhasorPlot:
|
|
426
425
|
image : array_like
|
427
426
|
Image to display.
|
428
427
|
**kwargs
|
429
|
-
|
428
|
+
Optional arguments passed to
|
430
429
|
:py:meth:`matplotlib.axes.Axes.imshow`.
|
431
430
|
|
432
431
|
"""
|
@@ -461,7 +460,7 @@ class PhasorPlot:
|
|
461
460
|
label_offset : float, optional
|
462
461
|
Distance of text label to component coordinate.
|
463
462
|
**kwargs
|
464
|
-
|
463
|
+
Optional arguments passed to
|
465
464
|
:py:class:`matplotlib.patches.Polygon`,
|
466
465
|
:py:class:`matplotlib.lines.Line2D`, or
|
467
466
|
:py:class:`matplotlib.axes.Axes.annotate`
|
@@ -572,8 +571,7 @@ class PhasorPlot:
|
|
572
571
|
imag : array_like, shape (n, )
|
573
572
|
Imaginary components of line start and end coordinates.
|
574
573
|
**kwargs
|
575
|
-
|
576
|
-
:py:class:`matplotlib.lines.Line2D`.
|
574
|
+
Optional arguments passed to :py:class:`matplotlib.lines.Line2D`.
|
577
575
|
|
578
576
|
Returns
|
579
577
|
-------
|
@@ -607,8 +605,7 @@ class PhasorPlot:
|
|
607
605
|
radius : float
|
608
606
|
Circle radius.
|
609
607
|
**kwargs
|
610
|
-
|
611
|
-
:py:class:`matplotlib.patches.Circle`.
|
608
|
+
Optional arguments passed to :py:class:`matplotlib.patches.Circle`.
|
612
609
|
|
613
610
|
"""
|
614
611
|
linestyle = kwargs.pop('ls', GRID_LINESTYLE)
|
@@ -646,7 +643,7 @@ class PhasorPlot:
|
|
646
643
|
Angle in radians, controlling curvature of line between points.
|
647
644
|
If None (default), draw a straight line.
|
648
645
|
**kwargs
|
649
|
-
|
646
|
+
Optional arguments passed to
|
650
647
|
:py:class:`matplotlib.patches.FancyArrowPatch`.
|
651
648
|
|
652
649
|
"""
|
@@ -719,7 +716,7 @@ class PhasorPlot:
|
|
719
716
|
If true, draw phase line and modulation arc.
|
720
717
|
Else, draw Cartesian lines.
|
721
718
|
**kwargs
|
722
|
-
|
719
|
+
Optional arguments passed to
|
723
720
|
:py:class:`matplotlib.lines.Line2D`,
|
724
721
|
:py:class:`matplotlib.patches.Circle`,
|
725
722
|
:py:class:`matplotlib.patches.Ellipse`, or
|
@@ -1110,7 +1107,7 @@ class PhasorPlot:
|
|
1110
1107
|
Format string for tick values if `labels` is None.
|
1111
1108
|
By default, the tick format is "{}".
|
1112
1109
|
**kwargs
|
1113
|
-
|
1110
|
+
Optional arguments passed to
|
1114
1111
|
:py:class:`matplotlib.patches.Circle` and
|
1115
1112
|
:py:class:`matplotlib.lines.Line2D`.
|
1116
1113
|
|
@@ -1201,14 +1198,14 @@ class PhasorPlot:
|
|
1201
1198
|
elif labels is None:
|
1202
1199
|
# use tick values as labels
|
1203
1200
|
assert ticks is not None
|
1204
|
-
ticks = numpy.array(ticks,
|
1201
|
+
ticks = numpy.array(ticks, ndmin=1, copy=True)
|
1205
1202
|
if tick_format is None:
|
1206
1203
|
tick_format = '{}'
|
1207
1204
|
labels = [tick_format.format(t) for t in ticks]
|
1208
1205
|
ticks = ticks.astype(numpy.float64)
|
1209
1206
|
else:
|
1210
1207
|
# ticks and labels
|
1211
|
-
ticks = numpy.array(ticks, dtype=numpy.float64,
|
1208
|
+
ticks = numpy.array(ticks, dtype=numpy.float64, ndmin=1, copy=True)
|
1212
1209
|
if ticks.size != len(labels):
|
1213
1210
|
raise ValueError(f'{ticks.size=} != {len(labels)=}')
|
1214
1211
|
|
@@ -1262,7 +1259,7 @@ class PhasorPlot:
|
|
1262
1259
|
use_lines : bool, optional, default: False
|
1263
1260
|
Draw universal semicircle using lines instead of arc.
|
1264
1261
|
**kwargs
|
1265
|
-
|
1262
|
+
Optional arguments passed to
|
1266
1263
|
:py:class:`matplotlib.lines.Line2D` or
|
1267
1264
|
:py:class:`matplotlib.patches.Arc` and
|
1268
1265
|
:py:meth:`matplotlib.axes.Axes.plot`.
|
@@ -1368,7 +1365,7 @@ class CircleTicks(AbstractPathEffect):
|
|
1368
1365
|
labels : sequence of str, optional
|
1369
1366
|
Tick labels for each vertex in path.
|
1370
1367
|
**kwargs
|
1371
|
-
|
1368
|
+
Optional arguments passed to
|
1372
1369
|
:py:meth:`matplotlib.patheffects.AbstractPathEffect._update_gc`.
|
1373
1370
|
|
1374
1371
|
"""
|
@@ -82,7 +82,7 @@ class PhasorPlotFret(PhasorPlot):
|
|
82
82
|
interactive : bool, optional, default: False
|
83
83
|
Use matplotlib slider widgets to interactively control parameters.
|
84
84
|
**kwargs
|
85
|
-
|
85
|
+
Optional arguments passed to :py:class:`phasorpy.plot.PhasorPlot`.
|
86
86
|
|
87
87
|
See Also
|
88
88
|
--------
|
phasorpy/utils.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: phasorpy
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.8
|
4
4
|
Summary: Analysis of fluorescence lifetime and hyperspectral images using the phasor approach
|
5
5
|
Author: PhasorPy Contributors
|
6
6
|
License-Expression: MIT
|
@@ -18,20 +18,20 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
18
|
Classifier: Operating System :: OS Independent
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
20
20
|
Classifier: Programming Language :: Python :: 3 :: Only
|
21
|
-
Classifier: Programming Language :: Python :: 3.11
|
22
21
|
Classifier: Programming Language :: Python :: 3.12
|
23
22
|
Classifier: Programming Language :: Python :: 3.13
|
24
|
-
|
23
|
+
Classifier: Programming Language :: Python :: 3.14
|
24
|
+
Requires-Python: >=3.12
|
25
25
|
Description-Content-Type: text/markdown
|
26
26
|
License-File: LICENSE.txt
|
27
|
-
Requires-Dist: numpy>=
|
28
|
-
Requires-Dist: matplotlib>=3.
|
29
|
-
Requires-Dist: scipy>=1.
|
27
|
+
Requires-Dist: numpy>=2.0.0
|
28
|
+
Requires-Dist: matplotlib>=3.9.0
|
29
|
+
Requires-Dist: scipy>=1.13.0
|
30
30
|
Requires-Dist: click
|
31
31
|
Requires-Dist: pooch
|
32
32
|
Requires-Dist: tqdm
|
33
33
|
Requires-Dist: scikit-learn>=1.5.0
|
34
|
-
Requires-Dist: xarray>=
|
34
|
+
Requires-Dist: xarray>=2024.6.0
|
35
35
|
Requires-Dist: tifffile>=2024.8.30
|
36
36
|
Provides-Extra: docs
|
37
37
|
Requires-Dist: sphinx; extra == "docs"
|
@@ -46,6 +46,7 @@ Requires-Dist: lfdfiles>=2024.5.24; extra == "all"
|
|
46
46
|
Requires-Dist: sdtfile>=2024.5.24; extra == "all"
|
47
47
|
Requires-Dist: ptufile>=2024.9.14; extra == "all"
|
48
48
|
Requires-Dist: liffile>=2025.2.10; extra == "all"
|
49
|
+
Requires-Dist: fbdfile>=2025.9.18; extra == "all"
|
49
50
|
Requires-Dist: pawflim; extra == "all"
|
50
51
|
Dynamic: license-file
|
51
52
|
|
@@ -0,0 +1,36 @@
|
|
1
|
+
phasorpy/__init__.py,sha256=G6kNL7LU0WgL4QNCc6c8whQdJRO9Mz2H5OdL1tvqpGA,149
|
2
|
+
phasorpy/__main__.py,sha256=0u6C98HYfajV1RoUww8kAc0CxdsON0ijgEyTYExCSLM,149
|
3
|
+
phasorpy/_phasorpy.cp314t-win_amd64.pyd,sha256=fZiivu0fy0ep1KGTkkd32YtLp2K9D_6uVxNvgwInaoA,1214976
|
4
|
+
phasorpy/_phasorpy.pyx,sha256=aCQPi0zk1LfrfgsBAW630F2GRz5R_VmBqUEMlp_6P28,79500
|
5
|
+
phasorpy/_typing.py,sha256=ii-5-8KTs2BZq0Ytu3yJl8ejSQj1V06c1_Jcwa_2Snk,1324
|
6
|
+
phasorpy/_utils.py,sha256=3adejMREVlu1nOc9A1nYCrAi827v8gZt_CI4nJTHh6c,23349
|
7
|
+
phasorpy/cli.py,sha256=WpmVkKbf9gtWmeip8PuewA2wLJZW4qvmCanAZRSdkXY,3692
|
8
|
+
phasorpy/cluster.py,sha256=m2pT5sebv2wrN29ZlWgQCyFf989hJSYBeJk7TqATAkg,6133
|
9
|
+
phasorpy/color.py,sha256=CGrV0qnZH_Oy2qGrWgkBvq8Bl99BDi9J9oYj-e3tp5I,17659
|
10
|
+
phasorpy/component.py,sha256=t1rjtWr6tEs9lGrJL1cqG2xHhxQZGVEA3A1mlHEc3Yg,25397
|
11
|
+
phasorpy/conftest.py,sha256=0dCO8UZtEnhZv-JW1_vGvPZOmaihRLOo_Wc857socWI,976
|
12
|
+
phasorpy/cursor.py,sha256=NR-Lq57g4v-70zU3rETa03Vg7Jk1y8SLj-UzR__G8yU,15665
|
13
|
+
phasorpy/datasets.py,sha256=9OM4IdYbkPbrqNQnvL7AH5bYrZ5CjHtxeH5G9eBHSNE,24975
|
14
|
+
phasorpy/experimental.py,sha256=NGORi9__rp01vRqzegoTb0K7qZmliStTC4pfE2wDhto,3916
|
15
|
+
phasorpy/filter.py,sha256=ZaV0OkK3RcYXNV8_8RHDv916k0gLtayigemlXDq0ZiY,33601
|
16
|
+
phasorpy/lifetime.py,sha256=Pgzt_GNfxrlhVv-CkQg-pLy-A5J5dI7c3ArJJ6cuTCM,69245
|
17
|
+
phasorpy/phasor.py,sha256=C_KwfsSJEv7OHaQS_6lH5uEZCknL06I9HRQDI348RPA,48942
|
18
|
+
phasorpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
|
+
phasorpy/utils.py,sha256=bIXRRdTJ8Mknm6sBBZsiLnIFYiIK1P-n_LguRUSWAlA,4727
|
20
|
+
phasorpy/io/__init__.py,sha256=ssKqgyzGzixSWM-t2GzN4AWQjzNYNcLhctAqDE6GiSw,4970
|
21
|
+
phasorpy/io/_flimlabs.py,sha256=js363VUmc3KqaW5PRfJYxn1561wuQlM5nR_07t9X6Bc,11120
|
22
|
+
phasorpy/io/_leica.py,sha256=vobi6blhsnx51H0HtFYsyFNxiI1lJwxX5pZBNZatAt8,10784
|
23
|
+
phasorpy/io/_ometiff.py,sha256=ujbAGxfhUOP1AC3KpjZcbaIGLvVNx5iHA4VqoNKV0Bs,15897
|
24
|
+
phasorpy/io/_other.py,sha256=1orANk8pdJsiN21DWLfVfAww4NMKk7-5mAbD1l_sKUY,28085
|
25
|
+
phasorpy/io/_simfcs.py,sha256=35UT2gMBshOWo4iZD9GJpe78d7Zx5-Ch11Fjn0S-KWE,20270
|
26
|
+
phasorpy/plot/__init__.py,sha256=fUMe18wCkopcvWiNXSwd49bqt8EltfsxcnrBpBauK8M,793
|
27
|
+
phasorpy/plot/_functions.py,sha256=Pqw6oC91tvcL2ud7LYlbp0FrMjM8fli-_pgHdw6rCeU,22029
|
28
|
+
phasorpy/plot/_lifetime_plots.py,sha256=Va_ldRd183J69cV07x0prFHpoKeEbb7-CB35qV_WNsE,19311
|
29
|
+
phasorpy/plot/_phasorplot.py,sha256=V0ubHBcZFZVXI_s-1qiIfsDJGnmhom95Qr2xVNzKJqo,53370
|
30
|
+
phasorpy/plot/_phasorplot_fret.py,sha256=758RqKzXgU41MGbXZff6O0rj-YzLm5AeLYuXcmQ_J40,19719
|
31
|
+
phasorpy-0.8.dist-info/licenses/LICENSE.txt,sha256=KVzeDa0MBRSUYPFFNuo7Atn6v62TiJTgGzHigltEX0o,1104
|
32
|
+
phasorpy-0.8.dist-info/METADATA,sha256=uPo_br4auk2NyLmkSJDjaHEvNK9tIjEvPaPTx5akzW4,3373
|
33
|
+
phasorpy-0.8.dist-info/WHEEL,sha256=IxxXYqBIlKEzFy9ulBJ928Gdqg6XQ3DHti4avqq3myk,102
|
34
|
+
phasorpy-0.8.dist-info/entry_points.txt,sha256=VRhsl3qGiIKwtMraKapmduchTMbdReUi1AoVTe9f3ss,47
|
35
|
+
phasorpy-0.8.dist-info/top_level.txt,sha256=4Y0uYzya5R2loleAxZ6s2n53_FysUbgFTfFaU0i9rbo,9
|
36
|
+
phasorpy-0.8.dist-info/RECORD,,
|
phasorpy-0.7.dist-info/RECORD
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
phasorpy/__init__.py,sha256=DLmv6dVmHfRp0yUz482irUH9Vs0g77vFkypTDGPUlGs,149
|
2
|
-
phasorpy/__main__.py,sha256=0u6C98HYfajV1RoUww8kAc0CxdsON0ijgEyTYExCSLM,149
|
3
|
-
phasorpy/_phasorpy.cp314t-win_amd64.pyd,sha256=VgOI2W1rxu-jTXZ2EscZZ3F5drKeXv6vyYPHVWXphpQ,1213440
|
4
|
-
phasorpy/_phasorpy.pyx,sha256=I4eMejfkS_7xdGgzIXN--FZAJgns2XcbsqBRInT9XJ0,78536
|
5
|
-
phasorpy/_typing.py,sha256=ii-5-8KTs2BZq0Ytu3yJl8ejSQj1V06c1_Jcwa_2Snk,1324
|
6
|
-
phasorpy/_utils.py,sha256=8ch3zR0UTKBKEtx-nR4aMMQtrvH5p9_IDN9NeE0pYqo,23082
|
7
|
-
phasorpy/cli.py,sha256=WpmVkKbf9gtWmeip8PuewA2wLJZW4qvmCanAZRSdkXY,3692
|
8
|
-
phasorpy/cluster.py,sha256=xmV8YPkKsZfhFVFK5RV_mmqDR2klV9ideNBQ86zO028,6141
|
9
|
-
phasorpy/color.py,sha256=CGrV0qnZH_Oy2qGrWgkBvq8Bl99BDi9J9oYj-e3tp5I,17659
|
10
|
-
phasorpy/component.py,sha256=gpz-vaqnEk2VbVWz0Oq_lk57-6GijRwgA7bjODOlHWM,25338
|
11
|
-
phasorpy/conftest.py,sha256=0dCO8UZtEnhZv-JW1_vGvPZOmaihRLOo_Wc857socWI,976
|
12
|
-
phasorpy/cursor.py,sha256=NR-Lq57g4v-70zU3rETa03Vg7Jk1y8SLj-UzR__G8yU,15665
|
13
|
-
phasorpy/datasets.py,sha256=5cjUcu6jYpJQje1Qyt87p4cnAZtT7qL1vysZjo5zF0k,24972
|
14
|
-
phasorpy/experimental.py,sha256=bkQTvxtr3EU8_7f072E0VqeE6FLT9mCV9br_iTFOxZ4,9866
|
15
|
-
phasorpy/lifetime.py,sha256=lP9mD9Q6LqkwhLIt-j-2jvTPBAGZM1hLg7Eh5tw11W4,69238
|
16
|
-
phasorpy/phasor.py,sha256=HaNbbugZrgGEkyk-EBbwU_V6_v6aOB-ta1FlYpr26Xo,66892
|
17
|
-
phasorpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
|
-
phasorpy/utils.py,sha256=8EbA7iGzrKREud1dLorphCAMAmXzg3YvPdbCtpKIhLE,4707
|
19
|
-
phasorpy/io/__init__.py,sha256=5cARTMKEEQvvtotWJgIAOTvEtylOKn2bZRjgzowUqRc,4920
|
20
|
-
phasorpy/io/_flimlabs.py,sha256=gX1jgsrmq18vn7EhqBEqZS9uth5zCazMq4FadU3WylE,11084
|
21
|
-
phasorpy/io/_leica.py,sha256=bQw-dLanZukUnaJmOkF9Zib0guRXCMZ9-imaKufAyf8,11037
|
22
|
-
phasorpy/io/_ometiff.py,sha256=asWEPQdD7-vacUDC-M2cpPJNVXXfNACoyNKZYrSHTFQ,15840
|
23
|
-
phasorpy/io/_other.py,sha256=pa4aJy58SDTMO_TYNL4FZ1bjXBMB21Vp-EtgLlSWBmE,28083
|
24
|
-
phasorpy/io/_simfcs.py,sha256=2_e73ge3dsSCuWnlWp-ch2MxgAtCZgyEvK_w9tOp2ks,20177
|
25
|
-
phasorpy/plot/__init__.py,sha256=fUMe18wCkopcvWiNXSwd49bqt8EltfsxcnrBpBauK8M,793
|
26
|
-
phasorpy/plot/_functions.py,sha256=66V1ozTT9vKR8a3idsmYUdToHr8-e3HHmu9-XTIvs4I,22041
|
27
|
-
phasorpy/plot/_lifetime_plots.py,sha256=GV2-OtcEGCzYJFgDQzovKZ_LKUXaHJ2bg7OaRK_6zZ0,19313
|
28
|
-
phasorpy/plot/_phasorplot.py,sha256=6N5YmO33BO0RzNw-vebbWora8PX9iSxmC6KTH5YbMmY,53449
|
29
|
-
phasorpy/plot/_phasorplot_fret.py,sha256=mS_3ILXsjzS3f-G2XRXgzHGp6aHB-pEg2j_m8JDi73o,19722
|
30
|
-
phasorpy-0.7.dist-info/licenses/LICENSE.txt,sha256=KVzeDa0MBRSUYPFFNuo7Atn6v62TiJTgGzHigltEX0o,1104
|
31
|
-
phasorpy-0.7.dist-info/METADATA,sha256=IxYy-sGKrlX8ZomLASZpDihh9fT-vIn_4anl_iaf79I,3323
|
32
|
-
phasorpy-0.7.dist-info/WHEEL,sha256=IxxXYqBIlKEzFy9ulBJ928Gdqg6XQ3DHti4avqq3myk,102
|
33
|
-
phasorpy-0.7.dist-info/entry_points.txt,sha256=VRhsl3qGiIKwtMraKapmduchTMbdReUi1AoVTe9f3ss,47
|
34
|
-
phasorpy-0.7.dist-info/top_level.txt,sha256=4Y0uYzya5R2loleAxZ6s2n53_FysUbgFTfFaU0i9rbo,9
|
35
|
-
phasorpy-0.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|