cellects 0.2.2__tar.gz → 0.3.2__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.
- {cellects-0.2.2 → cellects-0.3.2}/PKG-INFO +20 -9
- {cellects-0.2.2 → cellects-0.3.2}/README.md +109 -101
- {cellects-0.2.2 → cellects-0.3.2}/pyproject.toml +4 -1
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/core/cellects_threads.py +51 -185
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/core/motion_analysis.py +74 -45
- cellects-0.3.2/src/cellects/core/one_image_analysis.py +787 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/core/program_organizer.py +172 -130
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/core/script_based_run.py +13 -23
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/gui/first_window.py +7 -4
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/gui/image_analysis_window.py +46 -36
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/gui/ui_strings.py +15 -15
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/image_analysis/image_segmentation.py +21 -77
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/image_analysis/morphological_operations.py +9 -15
- cellects-0.3.2/src/cellects/image_analysis/one_image_analysis_threads.py +360 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/image_analysis/shape_descriptors.py +1068 -1067
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/utils/formulas.py +3 -1
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/utils/load_display_save.py +2 -2
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects.egg-info/PKG-INFO +20 -9
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects.egg-info/requires.txt +3 -0
- {cellects-0.2.2 → cellects-0.3.2}/tests/test_formulas.py +4 -4
- {cellects-0.2.2 → cellects-0.3.2}/tests/test_image_segmentation.py +20 -14
- {cellects-0.2.2 → cellects-0.3.2}/tests/test_morphological_operations.py +108 -0
- {cellects-0.2.2 → cellects-0.3.2}/tests/test_motion_analysis.py +10 -22
- {cellects-0.2.2 → cellects-0.3.2}/tests/test_network_functions.py +0 -4
- cellects-0.3.2/tests/test_one_image_analysis.py +401 -0
- {cellects-0.2.2 → cellects-0.3.2}/tests/test_program_organizer.py +11 -8
- {cellects-0.2.2 → cellects-0.3.2}/tests/test_shape_descriptors.py +0 -1
- cellects-0.2.2/src/cellects/core/one_image_analysis.py +0 -1082
- cellects-0.2.2/src/cellects/image_analysis/one_image_analysis_threads.py +0 -230
- cellects-0.2.2/tests/test_one_image_analysis.py +0 -259
- {cellects-0.2.2 → cellects-0.3.2}/LICENSE +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/setup.cfg +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/__init__.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/__main__.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/config/__init__.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/config/all_vars_dict.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/core/__init__.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/core/cellects_paths.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/gui/__init__.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/gui/advanced_parameters.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/gui/cellects.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/gui/custom_widgets.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/gui/if_several_folders_window.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/gui/required_output.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/gui/video_analysis_window.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/icons/__init__.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/icons/cellects_icon.icns +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/icons/cellects_icon.ico +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/image_analysis/__init__.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/image_analysis/cell_leaving_detection.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/image_analysis/network_functions.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/image_analysis/oscillations_functions.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/image_analysis/progressively_add_distant_shapes.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/utils/__init__.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/utils/decorators.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects/utils/utilitarian.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects.egg-info/SOURCES.txt +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects.egg-info/dependency_links.txt +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects.egg-info/entry_points.txt +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/src/cellects.egg-info/top_level.txt +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/tests/test_based_run.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/tests/test_cell_leaving_detection.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/tests/test_load_display_save.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/tests/test_progressively_add_distant_shapes.py +0 -0
- {cellects-0.2.2 → cellects-0.3.2}/tests/test_utilitarian.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: cellects
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Cell Expansion Computer Tracking Software.
|
|
5
5
|
Author: Aurèle Boussard
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -714,17 +714,24 @@ Requires-Dist: mkdocstrings[python]; extra == "doc"
|
|
|
714
714
|
Requires-Dist: mkdocs-gen-files; extra == "doc"
|
|
715
715
|
Requires-Dist: mkdocs-autorefs; extra == "doc"
|
|
716
716
|
Requires-Dist: pymdown-extensions; extra == "doc"
|
|
717
|
+
Requires-Dist: mkdocs-literate-nav; extra == "doc"
|
|
718
|
+
Requires-Dist: mkdocs-section-index; extra == "doc"
|
|
719
|
+
Requires-Dist: mkdocs-jupyter; extra == "doc"
|
|
717
720
|
|
|
718
|
-
|
|
719
|
-
|
|
721
|
+
<h1>
|
|
722
|
+
<img src="https://raw.githubusercontent.com/Aurele-B/cellects/main/.github/icon.png"
|
|
723
|
+
width="42"
|
|
724
|
+
style="vertical-align: middle; margin-right: 12px;">
|
|
725
|
+
Cellects: Cell Expansion Computer Tracking Software
|
|
726
|
+
</h1>
|
|
720
727
|
|
|
721
728
|
[](https://pypi.org/project/cellects/)
|
|
722
729
|

|
|
723
730
|
[](https://pypi.org/project/cellects/)
|
|
724
731
|
[](https://github.com/Aurele-B/cellects/blob/main/LICENSE)
|
|
725
732
|
[](https://github.com/Aurele-B/cellects/stargazers)
|
|
726
|
-

|
|
734
|
+

|
|
728
735
|
|
|
729
736
|
Description
|
|
730
737
|
-----------
|
|
@@ -734,7 +741,8 @@ Cellects’ main strengths are its broad scope of action, automated computation
|
|
|
734
741
|
easy installation and user-friendly interface.
|
|
735
742
|
|
|
736
743
|
<figure>
|
|
737
|
-
<img src="doc/static/UserManualFigure1.png" alt="Cellects first window"
|
|
744
|
+
<img src="doc/static/UserManualFigure1.png" alt="Cellects first window"
|
|
745
|
+
style="display:block;float:none;margin-left:auto;margin-right:auto;width:100%">
|
|
738
746
|
<figcaption><strong>Figure 1:</strong> Cellects first window</figcaption>
|
|
739
747
|
</figure>
|
|
740
748
|
|
|
@@ -761,9 +769,12 @@ Cellects
|
|
|
761
769
|
|
|
762
770
|
## 📚 Documentation
|
|
763
771
|
|
|
764
|
-
|
|
765
|
-
- [**
|
|
766
|
-
- [**
|
|
772
|
+
Cellects' workflow is described in a [complete documentation](https://aurele-b.github.io/Cellects/). It includes:
|
|
773
|
+
- [**What is Cellects**](https://aurele-b.github.io/Cellects/what-is-cellects/): Purpose of the software, usable data and introduction of its user manual
|
|
774
|
+
- [**Setting up a first analysis**](https://aurele-b.github.io/Cellects/first-analysis/): Step-by-step workflows for data localization, image analysis and video tracking
|
|
775
|
+
- [**Improving the analysis**](https://aurele-b.github.io/Cellects/advanced/): Customization options, batch processing, parameter tuning.
|
|
776
|
+
- [**Use cases**](https://aurele-b.github.io/Cellects/use-cases/): Real-world cases using the GUI (interface) and the API (scripts).
|
|
777
|
+
- [**Contributing**](https://aurele-b.github.io/Cellects/contributing/): Report bugs and feature requests; contribute; testing and documentation processes.
|
|
767
778
|
- [**API Reference**](https://aurele-b.github.io/Cellects/api/): Auto-generated from source code docstrings (see [Build Documentation]).
|
|
768
779
|
|
|
769
780
|
---
|
|
@@ -1,101 +1,109 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
[](https://pypi.org/project/cellects/)
|
|
9
|
+

|
|
10
|
+
[](https://pypi.org/project/cellects/)
|
|
11
|
+
[](https://github.com/Aurele-B/cellects/blob/main/LICENSE)
|
|
12
|
+
[](https://github.com/Aurele-B/cellects/stargazers)
|
|
13
|
+

|
|
14
|
+

|
|
15
|
+
|
|
16
|
+
Description
|
|
17
|
+
-----------
|
|
18
|
+
|
|
19
|
+
Cellects is a tracking software for organisms whose shape and size change over time.
|
|
20
|
+
Cellects’ main strengths are its broad scope of action, automated computation of a variety of geometrical descriptors,
|
|
21
|
+
easy installation and user-friendly interface.
|
|
22
|
+
|
|
23
|
+
<figure>
|
|
24
|
+
<img src="doc/static/UserManualFigure1.png" alt="Cellects first window"
|
|
25
|
+
style="display:block;float:none;margin-left:auto;margin-right:auto;width:100%">
|
|
26
|
+
<figcaption><strong>Figure 1:</strong> Cellects first window</figcaption>
|
|
27
|
+
</figure>
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## 🚀 Installation (Short version)
|
|
32
|
+
Install using our Windows installer: [Cellects_installer.exe](https://github.com/Aurele-B/Cellects/releases/)
|
|
33
|
+
|
|
34
|
+
Or, install via pip:
|
|
35
|
+
```bash
|
|
36
|
+
pip install cellects
|
|
37
|
+
```
|
|
38
|
+
Any difficulties? follow our [complete installation tutorial](https://aurele-b.github.io/Cellects/installation/)
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## 🎯 Quick Start
|
|
43
|
+
Run in terminal:
|
|
44
|
+
```bash
|
|
45
|
+
Cellects
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## 📚 Documentation
|
|
51
|
+
|
|
52
|
+
Cellects' workflow is described in a [complete documentation](https://aurele-b.github.io/Cellects/). It includes:
|
|
53
|
+
- [**What is Cellects**](https://aurele-b.github.io/Cellects/what-is-cellects/): Purpose of the software, usable data and introduction of its user manual
|
|
54
|
+
- [**Setting up a first analysis**](https://aurele-b.github.io/Cellects/first-analysis/): Step-by-step workflows for data localization, image analysis and video tracking
|
|
55
|
+
- [**Improving the analysis**](https://aurele-b.github.io/Cellects/advanced/): Customization options, batch processing, parameter tuning.
|
|
56
|
+
- [**Use cases**](https://aurele-b.github.io/Cellects/use-cases/): Real-world cases using the GUI (interface) and the API (scripts).
|
|
57
|
+
- [**Contributing**](https://aurele-b.github.io/Cellects/contributing/): Report bugs and feature requests; contribute; testing and documentation processes.
|
|
58
|
+
- [**API Reference**](https://aurele-b.github.io/Cellects/api/): Auto-generated from source code docstrings (see [Build Documentation]).
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## 🧪 Use Cases
|
|
63
|
+
|
|
64
|
+
See [use cases](https://aurele-b.github.io/Cellects/use-cases/) for real-world examples:
|
|
65
|
+
- Automated Physarum polycephalum tracking using GUI
|
|
66
|
+
- Automated Physarum polycephalum tracking using API
|
|
67
|
+
- Colony growth tracking
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## 🛠 Contributing
|
|
72
|
+
|
|
73
|
+
We welcome contributions!
|
|
74
|
+
1. Fork the repository and create a new branch.
|
|
75
|
+
2. Submit issues/PRs via [GitHub](https://github.com/Aurele-B/cellects/issues).
|
|
76
|
+
|
|
77
|
+
For developer workflows, see [**Contributing**](https://aurele-b.github.io/Cellects/contributing/).
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## 📌 License & Citation
|
|
82
|
+
|
|
83
|
+
GNU GPL3 License (see [LICENSE](https://github.com/Aurele-B/cellects/blob/main/LICENSE)).
|
|
84
|
+
|
|
85
|
+
To cite Cellects, use:
|
|
86
|
+
```bibtex
|
|
87
|
+
@article{boussard2024cellects,
|
|
88
|
+
title={Cellects, a software to quantify cell expansion and motion},
|
|
89
|
+
author={Boussard, Aur{\`e}le and Arrufat, Patrick and Dussutour, Audrey and P{\'e}rez-Escudero, Alfonso},
|
|
90
|
+
journal={bioRxiv},
|
|
91
|
+
pages={2024--03},
|
|
92
|
+
year={2024},
|
|
93
|
+
publisher={Cold Spring Harbor Laboratory}
|
|
94
|
+
}
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## 🧪 Testing
|
|
100
|
+
|
|
101
|
+
Run unit tests with:
|
|
102
|
+
```bash
|
|
103
|
+
pytest
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## Resources
|
|
109
|
+
- [Usage example (video)](https://www.youtube.com/watch?v=N-k4p_aSPC0)
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "cellects"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.3.2"
|
|
8
8
|
description = "Cell Expansion Computer Tracking Software."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { file = "LICENSE" }
|
|
@@ -51,6 +51,9 @@ doc = [
|
|
|
51
51
|
"mkdocs-gen-files",
|
|
52
52
|
"mkdocs-autorefs",
|
|
53
53
|
"pymdown-extensions",
|
|
54
|
+
"mkdocs-literate-nav",
|
|
55
|
+
"mkdocs-section-index",
|
|
56
|
+
"mkdocs-jupyter",
|
|
54
57
|
]
|
|
55
58
|
|
|
56
59
|
[project.urls]
|