phasorpy 0.2__tar.gz → 0.4__tar.gz
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-0.2 → phasorpy-0.4}/LICENSE.txt +21 -21
- {phasorpy-0.2 → phasorpy-0.4}/MANIFEST.in +18 -18
- {phasorpy-0.2/src/phasorpy.egg-info → phasorpy-0.4}/PKG-INFO +79 -78
- {phasorpy-0.2 → phasorpy-0.4}/README.md +23 -23
- {phasorpy-0.2 → phasorpy-0.4}/docs/_static/custom-icons.js +16 -16
- phasorpy-0.4/docs/_static/switcher.json +23 -0
- {phasorpy-0.2 → phasorpy-0.4}/docs/acknowledgments.rst +35 -35
- {phasorpy-0.2 → phasorpy-0.4}/docs/api/_phasorpy.rst +12 -12
- {phasorpy-0.2 → phasorpy-0.4}/docs/api/_utils.rst +9 -9
- {phasorpy-0.2 → phasorpy-0.4}/docs/api/cli.rst +6 -6
- {phasorpy-0.2 → phasorpy-0.4}/docs/api/color.rst +20 -20
- {phasorpy-0.2 → phasorpy-0.4}/docs/api/components.rst +5 -5
- {phasorpy-0.2 → phasorpy-0.4}/docs/api/cursors.rst +5 -5
- {phasorpy-0.2 → phasorpy-0.4}/docs/api/datasets.rst +9 -9
- {phasorpy-0.2 → phasorpy-0.4}/docs/api/index.rst +26 -26
- {phasorpy-0.2 → phasorpy-0.4}/docs/api/io.rst +5 -5
- {phasorpy-0.2 → phasorpy-0.4}/docs/api/phasor.rst +5 -5
- {phasorpy-0.2 → phasorpy-0.4}/docs/api/phasorpy.rst +6 -6
- {phasorpy-0.2 → phasorpy-0.4}/docs/api/plot.rst +5 -5
- {phasorpy-0.2 → phasorpy-0.4}/docs/api/utils.rst +5 -5
- {phasorpy-0.2 → phasorpy-0.4}/docs/code_of_conduct.rst +143 -143
- {phasorpy-0.2 → phasorpy-0.4}/docs/conf.py +146 -146
- {phasorpy-0.2 → phasorpy-0.4}/docs/contributing.rst +292 -292
- {phasorpy-0.2 → phasorpy-0.4}/docs/index.rst +79 -78
- {phasorpy-0.2 → phasorpy-0.4}/docs/license.rst +22 -22
- {phasorpy-0.2 → phasorpy-0.4}/docs/phasor_approach.rst +314 -303
- {phasorpy-0.2 → phasorpy-0.4}/docs/release.rst +234 -176
- {phasorpy-0.2 → phasorpy-0.4}/pyproject.toml +192 -191
- {phasorpy-0.2 → phasorpy-0.4}/setup.cfg +4 -4
- {phasorpy-0.2 → phasorpy-0.4}/setup.py +53 -53
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/__init__.py +10 -10
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/__main__.py +7 -7
- phasorpy-0.2/src/phasorpy/io.py → phasorpy-0.4/src/phasorpy/_io.py +2431 -1669
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/_phasorpy.pyx +2230 -2143
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/_typing.py +77 -77
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/_utils.py +519 -454
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/cli.py +87 -87
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/color.py +580 -581
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/components.py +313 -313
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/conftest.py +36 -36
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/cursors.py +502 -502
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/datasets.py +534 -453
- phasorpy-0.4/src/phasorpy/io.py +5 -0
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/phasor.py +3419 -3311
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/plot.py +2094 -2074
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/utils.py +368 -368
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/version.py +72 -71
- {phasorpy-0.2 → phasorpy-0.4/src/phasorpy.egg-info}/PKG-INFO +79 -78
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy.egg-info/SOURCES.txt +1 -23
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy.egg-info/not-zip-safe +1 -1
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy.egg-info/requires.txt +1 -0
- {phasorpy-0.2 → phasorpy-0.4}/tests/conftest.py +24 -24
- {phasorpy-0.2 → phasorpy-0.4}/tests/test__phasorpy.py +423 -423
- {phasorpy-0.2 → phasorpy-0.4}/tests/test__typing.py +10 -10
- {phasorpy-0.2 → phasorpy-0.4}/tests/test__utils.py +269 -244
- {phasorpy-0.2 → phasorpy-0.4}/tests/test_cli.py +41 -41
- {phasorpy-0.2 → phasorpy-0.4}/tests/test_color.py +39 -39
- {phasorpy-0.2 → phasorpy-0.4}/tests/test_components.py +261 -261
- {phasorpy-0.2 → phasorpy-0.4}/tests/test_cursors.py +478 -478
- {phasorpy-0.2 → phasorpy-0.4}/tests/test_datasets.py +84 -84
- phasorpy-0.4/tests/test_io.py +1172 -0
- {phasorpy-0.2 → phasorpy-0.4}/tests/test_nan.py +406 -387
- {phasorpy-0.2 → phasorpy-0.4}/tests/test_phasor.py +2978 -2772
- {phasorpy-0.2 → phasorpy-0.4}/tests/test_phasorpy.py +18 -18
- {phasorpy-0.2 → phasorpy-0.4}/tests/test_plot.py +534 -527
- {phasorpy-0.2 → phasorpy-0.4}/tests/test_utils.py +140 -140
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/README.rst +9 -9
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/api/README.rst +4 -4
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/api/phasorpy_components.py +261 -261
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/api/phasorpy_cursors.py +172 -172
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/api/phasorpy_fret.py +234 -234
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/api/phasorpy_lifetime_to_signal.py +195 -195
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/api/phasorpy_multi-harmonic.py +222 -209
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/api/phasorpy_pca.py +150 -150
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/api/phasorpy_phasor_from_lifetime.py +202 -202
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/api/phasorpy_phasorplot.py +226 -226
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/applications/README.rst +4 -4
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/benchmarks/README.rst +4 -4
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/benchmarks/phasorpy_phasor_from_signal.py +161 -161
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/phasorpy_introduction.py +474 -463
- {phasorpy-0.2 → phasorpy-0.4}/tutorials/phasorpy_lfd_workshop.py +574 -576
- phasorpy-0.2/.codecov.yml +0 -11
- phasorpy-0.2/.github/ISSUE_TEMPLATE/bug_report.md +0 -36
- phasorpy-0.2/.github/dependabot.yml +0 -11
- phasorpy-0.2/.github/pull_request_template.md +0 -15
- phasorpy-0.2/.github/workflows/build_sdist.yml +0 -77
- phasorpy-0.2/.github/workflows/build_wheels.yml +0 -43
- phasorpy-0.2/.github/workflows/coverage.yml +0 -40
- phasorpy-0.2/.github/workflows/deploy-docs.yml +0 -54
- phasorpy-0.2/.github/workflows/run-tests.yml +0 -162
- phasorpy-0.2/.gitignore +0 -203
- phasorpy-0.2/.pre-commit-config.yaml +0 -103
- phasorpy-0.2/CHANGELOG.md +0 -1
- phasorpy-0.2/CODE_OF_CONDUCT.md +0 -1
- phasorpy-0.2/CONTRIBUTING.md +0 -1
- phasorpy-0.2/docs/Makefile +0 -20
- phasorpy-0.2/docs/_static/switcher.json +0 -13
- phasorpy-0.2/docs/make.bat +0 -39
- phasorpy-0.2/docs/sg_execution_times.rst +0 -67
- phasorpy-0.2/requirements_dev.txt +0 -64
- phasorpy-0.2/requirements_min.txt +0 -13
- phasorpy-0.2/tests/test_io.py +0 -762
- phasorpy-0.2/tools/build_manylinux2014.cmd +0 -13
- phasorpy-0.2/tools/build_manylinux2014.sh +0 -10
- phasorpy-0.2/tools/sha256.py +0 -36
- {phasorpy-0.2 → phasorpy-0.4}/docs/_static/categorical.png +0 -0
- {phasorpy-0.2 → phasorpy-0.4}/docs/_static/logo.png +0 -0
- {phasorpy-0.2 → phasorpy-0.4}/docs/_static/srgb_spectrum.png +0 -0
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy/py.typed +0 -0
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy.egg-info/dependency_links.txt +0 -0
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy.egg-info/entry_points.txt +0 -0
- {phasorpy-0.2 → phasorpy-0.4}/src/phasorpy.egg-info/top_level.txt +0 -0
@@ -1,21 +1,21 @@
|
|
1
|
-
MIT License
|
2
|
-
|
3
|
-
Copyright (c) 2022-
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
13
|
-
copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
SOFTWARE.
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2022-2025 PhasorPy Contributors
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -1,18 +1,18 @@
|
|
1
|
-
include LICENSE.txt
|
2
|
-
include README.md
|
3
|
-
|
4
|
-
include tests/*.py
|
5
|
-
|
6
|
-
include docs/*.py
|
7
|
-
include docs/*.rst
|
8
|
-
include docs/api/*.rst
|
9
|
-
include docs/_static/*.*
|
10
|
-
|
11
|
-
recursive-include tutorials *.py
|
12
|
-
recursive-include tutorials *.rst
|
13
|
-
|
14
|
-
exclude *.cmd
|
15
|
-
|
16
|
-
recursive-exclude * __pycache__
|
17
|
-
recursive-exclude * *.py[co]
|
18
|
-
recursive-exclude * *Copy*
|
1
|
+
include LICENSE.txt
|
2
|
+
include README.md
|
3
|
+
|
4
|
+
include tests/*.py
|
5
|
+
|
6
|
+
include docs/*.py
|
7
|
+
include docs/*.rst
|
8
|
+
include docs/api/*.rst
|
9
|
+
include docs/_static/*.*
|
10
|
+
|
11
|
+
recursive-include tutorials *.py
|
12
|
+
recursive-include tutorials *.rst
|
13
|
+
|
14
|
+
exclude *.cmd
|
15
|
+
|
16
|
+
recursive-exclude * __pycache__
|
17
|
+
recursive-exclude * *.py[co]
|
18
|
+
recursive-exclude * *Copy*
|
@@ -1,78 +1,79 @@
|
|
1
|
-
Metadata-Version: 2.
|
2
|
-
Name: phasorpy
|
3
|
-
Version: 0.
|
4
|
-
Summary: Analysis of fluorescence lifetime and hyperspectral images using the phasor approach
|
5
|
-
Author: PhasorPy Contributors
|
6
|
-
License: MIT
|
7
|
-
Project-URL: Homepage, https://www.phasorpy.org
|
8
|
-
Project-URL: Documentation, https://www.phasorpy.org/docs/stable/
|
9
|
-
Project-URL: Download, https://pypi.org/project/phasorpy/#files
|
10
|
-
Project-URL: Source code, https://github.com/phasorpy/phasorpy
|
11
|
-
Project-URL: Issue tracker, https://github.com/phasorpy/phasorpy/issues
|
12
|
-
Project-URL: Release notes, https://www.phasorpy.org/docs/stable/release
|
13
|
-
Classifier: Development Status :: 3 - Alpha
|
14
|
-
Classifier: Intended Audience :: Developers
|
15
|
-
Classifier: Intended Audience :: Science/Research
|
16
|
-
Classifier: License :: OSI Approved :: MIT License
|
17
|
-
Classifier: Programming Language :: Python
|
18
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
19
|
-
Classifier: Operating System :: OS Independent
|
20
|
-
Classifier: Programming Language :: Python :: 3
|
21
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
22
|
-
Classifier: Programming Language :: Python :: 3.10
|
23
|
-
Classifier: Programming Language :: Python :: 3.11
|
24
|
-
Classifier: Programming Language :: Python :: 3.12
|
25
|
-
Classifier: Programming Language :: Python :: 3.13
|
26
|
-
Requires-Python: >=3.10
|
27
|
-
Description-Content-Type: text/markdown
|
28
|
-
License-File: LICENSE.txt
|
29
|
-
Requires-Dist: numpy>=1.24.0
|
30
|
-
Requires-Dist: matplotlib>=3.7.0
|
31
|
-
Requires-Dist: scipy>=1.11.0
|
32
|
-
Requires-Dist: click
|
33
|
-
Requires-Dist: pooch
|
34
|
-
Requires-Dist: tqdm
|
35
|
-
Requires-Dist: xarray>=2023.4.0
|
36
|
-
Requires-Dist: tifffile>=2024.8.30
|
37
|
-
Provides-Extra: docs
|
38
|
-
Requires-Dist: sphinx; extra == "docs"
|
39
|
-
Requires-Dist: sphinx-issues; extra == "docs"
|
40
|
-
Requires-Dist: sphinx_gallery; extra == "docs"
|
41
|
-
Requires-Dist: sphinx-copybutton; extra == "docs"
|
42
|
-
Requires-Dist: sphinx_click; extra == "docs"
|
43
|
-
Requires-Dist: pydata-sphinx-theme>=0.16.0; extra == "docs"
|
44
|
-
Requires-Dist: numpydoc; extra == "docs"
|
45
|
-
Provides-Extra: test
|
46
|
-
Requires-Dist: pytest; extra == "test"
|
47
|
-
Requires-Dist: pytest-cov; extra == "test"
|
48
|
-
Requires-Dist: pytest-runner; extra == "test"
|
49
|
-
Requires-Dist: pytest-doctestplus; extra == "test"
|
50
|
-
Requires-Dist: coverage; extra == "test"
|
51
|
-
Provides-Extra: all
|
52
|
-
Requires-Dist: lfdfiles>=2024.5.24; extra == "all"
|
53
|
-
Requires-Dist: sdtfile>=2024.5.24; extra == "all"
|
54
|
-
Requires-Dist: ptufile>=2024.9.14; extra == "all"
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
- [
|
63
|
-
- [
|
64
|
-
- [
|
65
|
-
- [
|
66
|
-
- [
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: phasorpy
|
3
|
+
Version: 0.4
|
4
|
+
Summary: Analysis of fluorescence lifetime and hyperspectral images using the phasor approach
|
5
|
+
Author: PhasorPy Contributors
|
6
|
+
License: MIT
|
7
|
+
Project-URL: Homepage, https://www.phasorpy.org
|
8
|
+
Project-URL: Documentation, https://www.phasorpy.org/docs/stable/
|
9
|
+
Project-URL: Download, https://pypi.org/project/phasorpy/#files
|
10
|
+
Project-URL: Source code, https://github.com/phasorpy/phasorpy
|
11
|
+
Project-URL: Issue tracker, https://github.com/phasorpy/phasorpy/issues
|
12
|
+
Project-URL: Release notes, https://www.phasorpy.org/docs/stable/release
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
14
|
+
Classifier: Intended Audience :: Developers
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
17
|
+
Classifier: Programming Language :: Python
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
19
|
+
Classifier: Operating System :: OS Independent
|
20
|
+
Classifier: Programming Language :: Python :: 3
|
21
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
22
|
+
Classifier: Programming Language :: Python :: 3.10
|
23
|
+
Classifier: Programming Language :: Python :: 3.11
|
24
|
+
Classifier: Programming Language :: Python :: 3.12
|
25
|
+
Classifier: Programming Language :: Python :: 3.13
|
26
|
+
Requires-Python: >=3.10
|
27
|
+
Description-Content-Type: text/markdown
|
28
|
+
License-File: LICENSE.txt
|
29
|
+
Requires-Dist: numpy>=1.24.0
|
30
|
+
Requires-Dist: matplotlib>=3.7.0
|
31
|
+
Requires-Dist: scipy>=1.11.0
|
32
|
+
Requires-Dist: click
|
33
|
+
Requires-Dist: pooch
|
34
|
+
Requires-Dist: tqdm
|
35
|
+
Requires-Dist: xarray>=2023.4.0
|
36
|
+
Requires-Dist: tifffile>=2024.8.30
|
37
|
+
Provides-Extra: docs
|
38
|
+
Requires-Dist: sphinx; extra == "docs"
|
39
|
+
Requires-Dist: sphinx-issues; extra == "docs"
|
40
|
+
Requires-Dist: sphinx_gallery; extra == "docs"
|
41
|
+
Requires-Dist: sphinx-copybutton; extra == "docs"
|
42
|
+
Requires-Dist: sphinx_click; extra == "docs"
|
43
|
+
Requires-Dist: pydata-sphinx-theme>=0.16.0; extra == "docs"
|
44
|
+
Requires-Dist: numpydoc; extra == "docs"
|
45
|
+
Provides-Extra: test
|
46
|
+
Requires-Dist: pytest; extra == "test"
|
47
|
+
Requires-Dist: pytest-cov; extra == "test"
|
48
|
+
Requires-Dist: pytest-runner; extra == "test"
|
49
|
+
Requires-Dist: pytest-doctestplus; extra == "test"
|
50
|
+
Requires-Dist: coverage; extra == "test"
|
51
|
+
Provides-Extra: all
|
52
|
+
Requires-Dist: lfdfiles>=2024.5.24; extra == "all"
|
53
|
+
Requires-Dist: sdtfile>=2024.5.24; extra == "all"
|
54
|
+
Requires-Dist: ptufile>=2024.9.14; extra == "all"
|
55
|
+
Requires-Dist: liffile>=2025.1.30; extra == "all"
|
56
|
+
|
57
|
+
# PhasorPy
|
58
|
+
|
59
|
+
PhasorPy is an open-source Python library for the analysis of fluorescence
|
60
|
+
lifetime and hyperspectral images using the phasor approach.
|
61
|
+
|
62
|
+
- [Homepage](https://www.phasorpy.org)
|
63
|
+
- [Documentation](https://www.phasorpy.org/docs/stable/)
|
64
|
+
- [Source code](https://github.com/phasorpy/phasorpy)
|
65
|
+
- [Install with pip](https://pypi.org/project/phasorpy/) or [conda](https://anaconda.org/conda-forge/phasorpy).
|
66
|
+
- [Data files](https://zenodo.org/communities/phasorpy/)
|
67
|
+
- [Issues and questions](https://github.com/phasorpy/phasorpy/issues)
|
68
|
+
|
69
|
+
PhasorPy is a community-maintained project.
|
70
|
+
[Contributions](https://www.phasorpy.org/docs/stable/contributing/)
|
71
|
+
in the form of bug reports, bug fixes, feature implementations, documentation,
|
72
|
+
datasets, and enhancement proposals are welcome.
|
73
|
+
|
74
|
+
This software project is supported in part by the
|
75
|
+
[Essential Open Source Software for Science (EOSS)](https://chanzuckerberg.com/eoss/)
|
76
|
+
program at
|
77
|
+
[Chan Zuckerberg Initiative](https://chanzuckerberg.com/).
|
78
|
+
|
79
|
+
[](https://czi.co/EOSS)
|
@@ -1,23 +1,23 @@
|
|
1
|
-
# PhasorPy
|
2
|
-
|
3
|
-
PhasorPy is an open-source Python library for the analysis of fluorescence
|
4
|
-
lifetime and hyperspectral images using the phasor approach.
|
5
|
-
|
6
|
-
- [Homepage](https://www.phasorpy.org)
|
7
|
-
- [Documentation](https://www.phasorpy.org/docs/stable/)
|
8
|
-
- [Source code](https://github.com/phasorpy/phasorpy)
|
9
|
-
- [
|
10
|
-
- [Data files](https://zenodo.org/communities/phasorpy/)
|
11
|
-
- [Issues and questions](https://github.com/phasorpy/phasorpy/issues)
|
12
|
-
|
13
|
-
PhasorPy is a community-maintained project.
|
14
|
-
[Contributions](https://www.phasorpy.org/docs/stable/contributing/)
|
15
|
-
in the form of bug reports, bug fixes, feature implementations, documentation,
|
16
|
-
datasets, and enhancement proposals are welcome.
|
17
|
-
|
18
|
-
This software project is supported in part by the
|
19
|
-
[Essential Open Source Software for Science (EOSS)](https://chanzuckerberg.com/eoss/)
|
20
|
-
program at
|
21
|
-
[Chan Zuckerberg Initiative](https://chanzuckerberg.com/).
|
22
|
-
|
23
|
-
[](https://czi.co/EOSS)
|
1
|
+
# PhasorPy
|
2
|
+
|
3
|
+
PhasorPy is an open-source Python library for the analysis of fluorescence
|
4
|
+
lifetime and hyperspectral images using the phasor approach.
|
5
|
+
|
6
|
+
- [Homepage](https://www.phasorpy.org)
|
7
|
+
- [Documentation](https://www.phasorpy.org/docs/stable/)
|
8
|
+
- [Source code](https://github.com/phasorpy/phasorpy)
|
9
|
+
- [Install with pip](https://pypi.org/project/phasorpy/) or [conda](https://anaconda.org/conda-forge/phasorpy).
|
10
|
+
- [Data files](https://zenodo.org/communities/phasorpy/)
|
11
|
+
- [Issues and questions](https://github.com/phasorpy/phasorpy/issues)
|
12
|
+
|
13
|
+
PhasorPy is a community-maintained project.
|
14
|
+
[Contributions](https://www.phasorpy.org/docs/stable/contributing/)
|
15
|
+
in the form of bug reports, bug fixes, feature implementations, documentation,
|
16
|
+
datasets, and enhancement proposals are welcome.
|
17
|
+
|
18
|
+
This software project is supported in part by the
|
19
|
+
[Essential Open Source Software for Science (EOSS)](https://chanzuckerberg.com/eoss/)
|
20
|
+
program at
|
21
|
+
[Chan Zuckerberg Initiative](https://chanzuckerberg.com/).
|
22
|
+
|
23
|
+
[](https://czi.co/EOSS)
|
@@ -1,16 +1,16 @@
|
|
1
|
-
/*******************************************************************************
|
2
|
-
* Set a custom icon for pypi as it's not available in the fa built-in brands
|
3
|
-
*/
|
4
|
-
FontAwesome.library.add(
|
5
|
-
(faListOldStyle = {
|
6
|
-
prefix: "fa-custom",
|
7
|
-
iconName: "pypi",
|
8
|
-
icon: [
|
9
|
-
17.313, // viewBox width
|
10
|
-
19.807, // viewBox height
|
11
|
-
[], // ligature
|
12
|
-
"e001", // unicode codepoint - private use area
|
13
|
-
"m10.383 0.2-3.239 1.1769 3.1883 1.1614 3.239-1.1798zm-3.4152 1.2411-3.2362 1.1769 3.1855 1.1614 3.2369-1.1769zm6.7177 0.00281-3.2947 1.2009v3.8254l3.2947-1.1988zm-3.4145 1.2439-3.2926 1.1981v3.8254l0.17548-0.064132 3.1171-1.1347zm-6.6564 0.018325v3.8247l3.244 1.1805v-3.8254zm10.191 0.20931v2.3137l3.1777-1.1558zm3.2947 1.2425-3.2947 1.1988v3.8254l3.2947-1.1988zm-8.7058 0.45739c0.00929-1.931e-4 0.018327-2.977e-4 0.027485 0 0.25633 0.00851 0.4263 0.20713 0.42638 0.49826 1.953e-4 0.38532-0.29327 0.80469-0.65542 0.93662-0.36226 0.13215-0.65608-0.073306-0.65613-0.4588-6.28e-5 -0.38556 0.2938-0.80504 0.65613-0.93662 0.068422-0.024919 0.13655-0.038114 0.20156-0.039466zm5.2913 0.78369-3.2947 1.1988v3.8247l3.2947-1.1981zm-10.132 1.239-3.2362 1.1769 3.1883 1.1614 3.2362-1.1769zm6.7177 0.00213-3.2926 1.2016v3.8247l3.2926-1.2009zm-3.4124 1.2439-3.2947 1.1988v3.8254l3.2947-1.1988zm-6.6585 0.016195v3.8275l3.244 1.1805v-3.8254zm16.9 0.21143-3.2947 1.1988v3.8247l3.2947-1.1981zm-3.4145 1.2411-3.2926 1.2016v3.8247l3.2926-1.2009zm-3.4145 1.2411-3.2926 1.2016v3.8247l3.2926-1.2009zm-3.4124 1.2432-3.2947 1.1988v3.8254l3.2947-1.1988zm-6.6585 0.019027v3.8247l3.244 1.1805v-3.8254zm13.485 1.4497-3.2947 1.1988v3.8247l3.2947-1.1981zm-3.4145 1.2411-3.2926 1.2016v3.8247l3.2926-1.2009zm2.4018 0.38127c0.0093-1.83e-4 0.01833-3.16e-4 0.02749 0 0.25633 0.0085 0.4263 0.20713 0.42638 0.49826 1.97e-4 0.38532-0.29327 0.80469-0.65542 0.93662-0.36188 0.1316-0.65525-0.07375-0.65542-0.4588-1.95e-4 -0.38532 0.29328-0.80469 0.65542-0.93662 0.06842-0.02494 0.13655-0.03819 0.20156-0.03947zm-5.8142 0.86403-3.244 1.1805v1.4201l3.244 1.1805z", // svg path (https://simpleicons.org/icons/pypi.svg)
|
14
|
-
],
|
15
|
-
}),
|
16
|
-
);
|
1
|
+
/*******************************************************************************
|
2
|
+
* Set a custom icon for pypi as it's not available in the fa built-in brands
|
3
|
+
*/
|
4
|
+
FontAwesome.library.add(
|
5
|
+
(faListOldStyle = {
|
6
|
+
prefix: "fa-custom",
|
7
|
+
iconName: "pypi",
|
8
|
+
icon: [
|
9
|
+
17.313, // viewBox width
|
10
|
+
19.807, // viewBox height
|
11
|
+
[], // ligature
|
12
|
+
"e001", // unicode codepoint - private use area
|
13
|
+
"m10.383 0.2-3.239 1.1769 3.1883 1.1614 3.239-1.1798zm-3.4152 1.2411-3.2362 1.1769 3.1855 1.1614 3.2369-1.1769zm6.7177 0.00281-3.2947 1.2009v3.8254l3.2947-1.1988zm-3.4145 1.2439-3.2926 1.1981v3.8254l0.17548-0.064132 3.1171-1.1347zm-6.6564 0.018325v3.8247l3.244 1.1805v-3.8254zm10.191 0.20931v2.3137l3.1777-1.1558zm3.2947 1.2425-3.2947 1.1988v3.8254l3.2947-1.1988zm-8.7058 0.45739c0.00929-1.931e-4 0.018327-2.977e-4 0.027485 0 0.25633 0.00851 0.4263 0.20713 0.42638 0.49826 1.953e-4 0.38532-0.29327 0.80469-0.65542 0.93662-0.36226 0.13215-0.65608-0.073306-0.65613-0.4588-6.28e-5 -0.38556 0.2938-0.80504 0.65613-0.93662 0.068422-0.024919 0.13655-0.038114 0.20156-0.039466zm5.2913 0.78369-3.2947 1.1988v3.8247l3.2947-1.1981zm-10.132 1.239-3.2362 1.1769 3.1883 1.1614 3.2362-1.1769zm6.7177 0.00213-3.2926 1.2016v3.8247l3.2926-1.2009zm-3.4124 1.2439-3.2947 1.1988v3.8254l3.2947-1.1988zm-6.6585 0.016195v3.8275l3.244 1.1805v-3.8254zm16.9 0.21143-3.2947 1.1988v3.8247l3.2947-1.1981zm-3.4145 1.2411-3.2926 1.2016v3.8247l3.2926-1.2009zm-3.4145 1.2411-3.2926 1.2016v3.8247l3.2926-1.2009zm-3.4124 1.2432-3.2947 1.1988v3.8254l3.2947-1.1988zm-6.6585 0.019027v3.8247l3.244 1.1805v-3.8254zm13.485 1.4497-3.2947 1.1988v3.8247l3.2947-1.1981zm-3.4145 1.2411-3.2926 1.2016v3.8247l3.2926-1.2009zm2.4018 0.38127c0.0093-1.83e-4 0.01833-3.16e-4 0.02749 0 0.25633 0.0085 0.4263 0.20713 0.42638 0.49826 1.97e-4 0.38532-0.29327 0.80469-0.65542 0.93662-0.36188 0.1316-0.65525-0.07375-0.65542-0.4588-1.95e-4 -0.38532 0.29328-0.80469 0.65542-0.93662 0.06842-0.02494 0.13655-0.03819 0.20156-0.03947zm-5.8142 0.86403-3.244 1.1805v1.4201l3.244 1.1805z", // svg path (https://simpleicons.org/icons/pypi.svg)
|
14
|
+
],
|
15
|
+
}),
|
16
|
+
);
|
@@ -0,0 +1,23 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"name": "dev",
|
4
|
+
"version": "0.5",
|
5
|
+
"url": "https://www.phasorpy.org/docs/dev/"
|
6
|
+
},
|
7
|
+
{
|
8
|
+
"name": "0.4 (stable)",
|
9
|
+
"version": "0.4",
|
10
|
+
"url": "https://www.phasorpy.org/docs/stable/",
|
11
|
+
"preferred": true
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"name": "0.3",
|
15
|
+
"version": "0.3",
|
16
|
+
"url": "https://www.phasorpy.org/docs/v0.3/"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"name": "0.2",
|
20
|
+
"version": "0.2",
|
21
|
+
"url": "https://www.phasorpy.org/docs/v0.2/"
|
22
|
+
}
|
23
|
+
]
|
@@ -1,35 +1,35 @@
|
|
1
|
-
Acknowledgments
|
2
|
-
===============
|
3
|
-
|
4
|
-
The PhasorPy project is jointly maintained by the
|
5
|
-
`Advanced Bioimaging Unit <https://pasteur.uy/en/units/advanced-bioimaging>`_
|
6
|
-
at the University of the Republic and Institut Pasteur de Montevideo and the
|
7
|
-
`Laboratory for Fluorescence Dynamics <https://www.lfd.uci.edu>`_
|
8
|
-
at the University of California, Irvine.
|
9
|
-
|
10
|
-
PhasorPy was inspired by the
|
11
|
-
`Globals for Images · SimFCS <https://www.lfd.uci.edu/globals/>`_ software by
|
12
|
-
Enrico Gratton.
|
13
|
-
|
14
|
-
This software project is supported in part by the
|
15
|
-
`Essential Open Source Software for Science (EOSS)
|
16
|
-
<https://chanzuckerberg.com/eoss/>`_ program at
|
17
|
-
`Chan Zuckerberg Initiative <https://chanzuckerberg.com/>`_.
|
18
|
-
|
19
|
-
.. _contributors:
|
20
|
-
|
21
|
-
Contributors
|
22
|
-
------------
|
23
|
-
|
24
|
-
The following people (in alphabetical order) have contributed to the
|
25
|
-
development of PhasorPy by providing code, documentation, tutorials,
|
26
|
-
bug fixes, or expertise:
|
27
|
-
|
28
|
-
- :user:`Christoph Gohlke <cgohlke>`
|
29
|
-
- Enrico Gratton
|
30
|
-
- :user:`Leonel Malacrida <lmalacrida>`
|
31
|
-
- :user:`Bruno Pannunzio <bruno-pannunzio>`
|
32
|
-
- :user:`Bruno Schüty <schutyb>`
|
33
|
-
|
34
|
-
See also `GitHub contributors
|
35
|
-
<https://github.com/phasorpy/phasorpy/graphs/contributors>`_.
|
1
|
+
Acknowledgments
|
2
|
+
===============
|
3
|
+
|
4
|
+
The PhasorPy project is jointly maintained by the
|
5
|
+
`Advanced Bioimaging Unit <https://pasteur.uy/en/units/advanced-bioimaging>`_
|
6
|
+
at the University of the Republic and Institut Pasteur de Montevideo and the
|
7
|
+
`Laboratory for Fluorescence Dynamics <https://www.lfd.uci.edu>`_
|
8
|
+
at the University of California, Irvine.
|
9
|
+
|
10
|
+
PhasorPy was inspired by the
|
11
|
+
`Globals for Images · SimFCS <https://www.lfd.uci.edu/globals/>`_ software by
|
12
|
+
Enrico Gratton.
|
13
|
+
|
14
|
+
This software project is supported in part by the
|
15
|
+
`Essential Open Source Software for Science (EOSS)
|
16
|
+
<https://chanzuckerberg.com/eoss/>`_ program at
|
17
|
+
`Chan Zuckerberg Initiative <https://chanzuckerberg.com/>`_.
|
18
|
+
|
19
|
+
.. _contributors:
|
20
|
+
|
21
|
+
Contributors
|
22
|
+
------------
|
23
|
+
|
24
|
+
The following people (in alphabetical order) have contributed to the
|
25
|
+
development of PhasorPy by providing code, documentation, tutorials,
|
26
|
+
bug fixes, or expertise:
|
27
|
+
|
28
|
+
- :user:`Christoph Gohlke <cgohlke>`
|
29
|
+
- Enrico Gratton
|
30
|
+
- :user:`Leonel Malacrida <lmalacrida>`
|
31
|
+
- :user:`Bruno Pannunzio <bruno-pannunzio>`
|
32
|
+
- :user:`Bruno Schüty <schutyb>`
|
33
|
+
|
34
|
+
See also `GitHub contributors
|
35
|
+
<https://github.com/phasorpy/phasorpy/graphs/contributors>`_.
|
@@ -1,12 +1,12 @@
|
|
1
|
-
phasorpy._phasorpy
|
2
|
-
------------------
|
3
|
-
|
4
|
-
.. note::
|
5
|
-
This module and its functions are not part of the public interface.
|
6
|
-
They are intended to facilitate the development of the PhasorPy library.
|
7
|
-
|
8
|
-
.. automodule:: phasorpy._phasorpy
|
9
|
-
:members:
|
10
|
-
:undoc-members:
|
11
|
-
:private-members:
|
12
|
-
:special-members:
|
1
|
+
phasorpy._phasorpy
|
2
|
+
------------------
|
3
|
+
|
4
|
+
.. note::
|
5
|
+
This module and its functions are not part of the public interface.
|
6
|
+
They are intended to facilitate the development of the PhasorPy library.
|
7
|
+
|
8
|
+
.. automodule:: phasorpy._phasorpy
|
9
|
+
:members:
|
10
|
+
:undoc-members:
|
11
|
+
:private-members:
|
12
|
+
:special-members:
|
@@ -1,9 +1,9 @@
|
|
1
|
-
phasorpy._utils
|
2
|
-
---------------
|
3
|
-
|
4
|
-
.. note::
|
5
|
-
This module and its functions are not part of the public interface.
|
6
|
-
They are intended to facilitate the development of the PhasorPy library.
|
7
|
-
|
8
|
-
.. automodule:: phasorpy._utils
|
9
|
-
:members:
|
1
|
+
phasorpy._utils
|
2
|
+
---------------
|
3
|
+
|
4
|
+
.. note::
|
5
|
+
This module and its functions are not part of the public interface.
|
6
|
+
They are intended to facilitate the development of the PhasorPy library.
|
7
|
+
|
8
|
+
.. automodule:: phasorpy._utils
|
9
|
+
:members:
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Command line interface
|
2
|
-
----------------------
|
3
|
-
|
4
|
-
.. click:: phasorpy.cli:main
|
5
|
-
:prog: python -m phasorpy
|
6
|
-
:nested: full
|
1
|
+
Command line interface
|
2
|
+
----------------------
|
3
|
+
|
4
|
+
.. click:: phasorpy.cli:main
|
5
|
+
:prog: python -m phasorpy
|
6
|
+
:nested: full
|
@@ -1,20 +1,20 @@
|
|
1
|
-
phasorpy.color
|
2
|
-
--------------
|
3
|
-
|
4
|
-
.. automodule:: phasorpy.color
|
5
|
-
:members:
|
6
|
-
:exclude-members: SRGB_SPECTRUM, CATEGORICAL
|
7
|
-
|
8
|
-
.. autodata:: phasorpy.color.CATEGORICAL
|
9
|
-
:no-value:
|
10
|
-
|
11
|
-
.. image:: ../_static/categorical.png
|
12
|
-
:alt: phasorpy.color.CATEGORICAL
|
13
|
-
:align: center
|
14
|
-
|
15
|
-
.. autodata:: phasorpy.color.SRGB_SPECTRUM
|
16
|
-
:no-value:
|
17
|
-
|
18
|
-
.. image:: ../_static/srgb_spectrum.png
|
19
|
-
:alt: phasorpy.color.SRGB_SPECTRUM
|
20
|
-
:align: center
|
1
|
+
phasorpy.color
|
2
|
+
--------------
|
3
|
+
|
4
|
+
.. automodule:: phasorpy.color
|
5
|
+
:members:
|
6
|
+
:exclude-members: SRGB_SPECTRUM, CATEGORICAL
|
7
|
+
|
8
|
+
.. autodata:: phasorpy.color.CATEGORICAL
|
9
|
+
:no-value:
|
10
|
+
|
11
|
+
.. image:: ../_static/categorical.png
|
12
|
+
:alt: phasorpy.color.CATEGORICAL
|
13
|
+
:align: center
|
14
|
+
|
15
|
+
.. autodata:: phasorpy.color.SRGB_SPECTRUM
|
16
|
+
:no-value:
|
17
|
+
|
18
|
+
.. image:: ../_static/srgb_spectrum.png
|
19
|
+
:alt: phasorpy.color.SRGB_SPECTRUM
|
20
|
+
:align: center
|
@@ -1,5 +1,5 @@
|
|
1
|
-
phasorpy.components
|
2
|
-
-------------------
|
3
|
-
|
4
|
-
.. automodule:: phasorpy.components
|
5
|
-
:members:
|
1
|
+
phasorpy.components
|
2
|
+
-------------------
|
3
|
+
|
4
|
+
.. automodule:: phasorpy.components
|
5
|
+
:members:
|
@@ -1,5 +1,5 @@
|
|
1
|
-
phasorpy.cursors
|
2
|
-
----------------
|
3
|
-
|
4
|
-
.. automodule:: phasorpy.cursors
|
5
|
-
:members:
|
1
|
+
phasorpy.cursors
|
2
|
+
----------------
|
3
|
+
|
4
|
+
.. automodule:: phasorpy.cursors
|
5
|
+
:members:
|
@@ -1,9 +1,9 @@
|
|
1
|
-
phasorpy.datasets
|
2
|
-
-----------------
|
3
|
-
|
4
|
-
.. automodule:: phasorpy.datasets
|
5
|
-
:members:
|
6
|
-
:exclude-members: REPOSITORIES
|
7
|
-
|
8
|
-
.. autodata:: phasorpy.datasets.REPOSITORIES
|
9
|
-
:no-value:
|
1
|
+
phasorpy.datasets
|
2
|
+
-----------------
|
3
|
+
|
4
|
+
.. automodule:: phasorpy.datasets
|
5
|
+
:members:
|
6
|
+
:exclude-members: REPOSITORIES
|
7
|
+
|
8
|
+
.. autodata:: phasorpy.datasets.REPOSITORIES
|
9
|
+
:no-value:
|
@@ -1,26 +1,26 @@
|
|
1
|
-
API reference
|
2
|
-
=============
|
3
|
-
|
4
|
-
This documents the application programming and command line interfaces of the
|
5
|
-
PhasorPy library version |version|.
|
6
|
-
|
7
|
-
.. note::
|
8
|
-
The PhasorPy library is in its early stages of development.
|
9
|
-
It is not nearly feature complete.
|
10
|
-
Large, backwards-incompatible changes may occur between revisions.
|
11
|
-
|
12
|
-
.. toctree::
|
13
|
-
:maxdepth: 3
|
14
|
-
|
15
|
-
phasorpy
|
16
|
-
phasor
|
17
|
-
cursors
|
18
|
-
components
|
19
|
-
plot
|
20
|
-
io
|
21
|
-
color
|
22
|
-
datasets
|
23
|
-
utils
|
24
|
-
_utils
|
25
|
-
_phasorpy
|
26
|
-
cli
|
1
|
+
API reference
|
2
|
+
=============
|
3
|
+
|
4
|
+
This documents the application programming and command line interfaces of the
|
5
|
+
PhasorPy library version |version|.
|
6
|
+
|
7
|
+
.. note::
|
8
|
+
The PhasorPy library is in its early stages of development.
|
9
|
+
It is not nearly feature complete.
|
10
|
+
Large, backwards-incompatible changes may occur between revisions.
|
11
|
+
|
12
|
+
.. toctree::
|
13
|
+
:maxdepth: 3
|
14
|
+
|
15
|
+
phasorpy
|
16
|
+
phasor
|
17
|
+
cursors
|
18
|
+
components
|
19
|
+
plot
|
20
|
+
io
|
21
|
+
color
|
22
|
+
datasets
|
23
|
+
utils
|
24
|
+
_utils
|
25
|
+
_phasorpy
|
26
|
+
cli
|
@@ -1,5 +1,5 @@
|
|
1
|
-
phasorpy.io
|
2
|
-
-----------
|
3
|
-
|
4
|
-
.. automodule:: phasorpy.io
|
5
|
-
:members:
|
1
|
+
phasorpy.io
|
2
|
+
-----------
|
3
|
+
|
4
|
+
.. automodule:: phasorpy.io
|
5
|
+
:members:
|
@@ -1,5 +1,5 @@
|
|
1
|
-
phasorpy.phasor
|
2
|
-
---------------
|
3
|
-
|
4
|
-
.. automodule:: phasorpy.phasor
|
5
|
-
:members:
|
1
|
+
phasorpy.phasor
|
2
|
+
---------------
|
3
|
+
|
4
|
+
.. automodule:: phasorpy.phasor
|
5
|
+
:members:
|