nettracer3d 1.1.9__tar.gz → 1.2.8__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.
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/LICENSE +2 -2
- {nettracer3d-1.1.9/src/nettracer3d.egg-info → nettracer3d-1.2.8}/PKG-INFO +72 -24
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/README.md +63 -20
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/pyproject.toml +7 -7
- nettracer3d-1.2.8/src/nettracer3d/branch_stitcher.py +425 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/filaments.py +53 -52
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/modularity.py +15 -6
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/morphology.py +1 -1
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/nettracer.py +136 -197
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/nettracer_gui.py +328 -164
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/network_analysis.py +36 -48
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/network_draw.py +16 -15
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/node_draw.py +4 -4
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/proximity.py +36 -150
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/simple_network.py +28 -9
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/smart_dilate.py +208 -107
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/tutorial.py +49 -61
- {nettracer3d-1.1.9 → nettracer3d-1.2.8/src/nettracer3d.egg-info}/PKG-INFO +72 -24
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d.egg-info/SOURCES.txt +1 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d.egg-info/requires.txt +8 -1
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/setup.cfg +0 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/__init__.py +0 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/cellpose_manager.py +0 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/community_extractor.py +0 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/excelotron.py +0 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/neighborhoods.py +0 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/painting.py +0 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/run.py +0 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/segmenter.py +0 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/segmenter_GPU.py +0 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d/stats.py +0 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d.egg-info/dependency_links.txt +0 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d.egg-info/entry_points.txt +0 -0
- {nettracer3d-1.1.9 → nettracer3d-1.2.8}/src/nettracer3d.egg-info/top_level.txt +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
NetTracer3D is freely available for academic and nonprofit use and can be obtained from Liam McLaughlin (boom2449@gmail.com) OR at pip (pip install nettracer3d), provided that
|
|
1
|
+
NetTracer3D is freely available for academic and nonprofit use and can be obtained from Liam McLaughlin (boom2449@gmail.com) OR at pip (pip install nettracer3d), provided that citation is included in any abstract, paper, or presentation utilizing NetTracer3D.
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
(The official paper to cite is coming soon)
|
|
4
4
|
|
|
5
5
|
Commercial use is available for a fee. Copyright © is held by Washington University. Please direct all commercial requests for licensing, information, and limited evaluation copies to Washington University's Office of Technology Management at OTM@wustl.edu.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nettracer3d
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.8
|
|
4
4
|
Summary: Scripts for intializing and analyzing networks from segmentations of three dimensional images.
|
|
5
5
|
Author-email: Liam McLaughlin <liamm@wustl.edu>
|
|
6
6
|
Project-URL: Documentation, https://nettracer3d.readthedocs.io/en/latest/
|
|
7
|
-
Project-URL:
|
|
8
|
-
Project-URL:
|
|
7
|
+
Project-URL: Youtube_Tutorial, https://www.youtube.com/watch?v=_4uDy0mzG94&list=PLsrhxiimzKJMZ3_gTWkfrcAdJQQobUhj7
|
|
8
|
+
Project-URL: Downloadable_Version, https://doi.org/10.5281/zenodo.17873800
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
10
|
Classifier: License :: Other/Proprietary License
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
|
@@ -25,7 +25,6 @@ Requires-Dist: tifffile
|
|
|
25
25
|
Requires-Dist: qtrangeslider
|
|
26
26
|
Requires-Dist: PyQt6
|
|
27
27
|
Requires-Dist: scikit-learn
|
|
28
|
-
Requires-Dist: nibabel
|
|
29
28
|
Requires-Dist: setuptools
|
|
30
29
|
Requires-Dist: umap-learn
|
|
31
30
|
Provides-Extra: cuda11
|
|
@@ -38,30 +37,86 @@ Provides-Extra: cellpose
|
|
|
38
37
|
Requires-Dist: cellpose[GUI]; extra == "cellpose"
|
|
39
38
|
Provides-Extra: viz
|
|
40
39
|
Requires-Dist: napari; extra == "viz"
|
|
40
|
+
Provides-Extra: rec
|
|
41
|
+
Requires-Dist: napari; extra == "rec"
|
|
42
|
+
Requires-Dist: edt; extra == "rec"
|
|
43
|
+
Provides-Extra: edt
|
|
44
|
+
Requires-Dist: edt; extra == "edt"
|
|
41
45
|
Provides-Extra: all
|
|
42
46
|
Requires-Dist: cellpose[GUI]; extra == "all"
|
|
43
47
|
Requires-Dist: napari; extra == "all"
|
|
48
|
+
Requires-Dist: edt; extra == "all"
|
|
44
49
|
Dynamic: license-file
|
|
45
50
|
|
|
46
51
|
NetTracer3D is a python package developed for both 2D and 3D analysis of microscopic images in the .tif file format. It supports generation of 3D networks showing the relationships between objects (or nodes) in three dimensional space, either based on their own proximity or connectivity via connecting objects such as nerves or blood vessels. In addition to these functionalities are several advanced 3D data processing algorithms, such as labeling of branched structures or abstraction of branched structures into networks. Note that nettracer3d uses segmented data, which can be segmented from other softwares such as ImageJ and imported into NetTracer3D, although it does offer its own segmentation via intensity and volumetric thresholding, or random forest machine learning segmentation. NetTracer3D currently has a fully functional GUI. To use the GUI, after installing the nettracer3d package via pip, enter the command 'nettracer3d' in your command prompt:
|
|
47
52
|
|
|
53
|
+
|
|
48
54
|
--- Documentation ---
|
|
49
55
|
|
|
50
56
|
Please see: https://nettracer3d.readthedocs.io/en/latest/
|
|
51
57
|
|
|
52
|
-
--- Installation ---
|
|
53
58
|
|
|
54
|
-
|
|
59
|
+
--- Video Tutorial ---
|
|
60
|
+
|
|
61
|
+
Please see: https://www.youtube.com/watch?v=_4uDy0mzG94&list=PLsrhxiimzKJMZ3_gTWkfrcAdJQQobUhj7
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
--- Installing as a Python package ---
|
|
65
|
+
|
|
66
|
+
1. **Get Python and Pip on your path**: To install nettracer3d, first install Python version 3.12. Make sure the Python installation installs pip, and that both Python and pip are available on your PATH. I recommend installing Python using the installer which is available here. Make sure to check the option to 'add Python to PATH' when it appears: https://www.python.org/downloads/
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
2. **Base Package**: Next, use this command in your command terminal
|
|
70
|
+
|
|
71
|
+
* pip install nettracer3d
|
|
72
|
+
|
|
73
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
74
|
+
|
|
75
|
+
3. **For 3D Displays**: Or if you also want Napari for 3D displays:
|
|
76
|
+
|
|
77
|
+
* pip install nettracer3d[viz]
|
|
78
|
+
|
|
79
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
80
|
+
|
|
81
|
+
4. **Optional Performance Boost**: If you are trying to process large images, you may also want to include the 'edt' module in your package. This will allow parallelized CPU calculations for several of the search functions which can increase their speed by an order of magnitude or more depending on how many cores your CPU has. This can be a major benefit if you have a strong CPU and sufficient RAM. It requires an extra pre-installation step, thus is not included by default. You will also have to install the C++ build tools from windows. Please head to this link, then download and run the installer: https://visualstudio.microsoft.com/visual-cpp-build-tools/. In the menu of the installer, select the 'Desktop Development with C++' option, then proceed to download/install it using the installation menu. You will likely want to be using the Python distributed from the actual Python website and not the windows store (or elsewhere) or the edt module may not work properly. To bundle with edt use:
|
|
82
|
+
|
|
83
|
+
* pip install nettracer3d[edt]
|
|
84
|
+
|
|
85
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
86
|
+
|
|
55
87
|
|
|
56
|
-
|
|
88
|
+
5. **Recommended full package**: Or if you want to just get both edt and napari at once:
|
|
89
|
+
|
|
90
|
+
* pip install nettracer3d[rec]
|
|
91
|
+
|
|
92
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
6. Likewise, if you already installed the default version, you can add napari and/or edt with just:
|
|
96
|
+
|
|
97
|
+
* pip install edt
|
|
98
|
+
* pip install napari
|
|
99
|
+
|
|
100
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
--- Installing as a Python package in Anaconda---
|
|
57
104
|
|
|
58
105
|
I recommend installing the program as an Anaconda package to ensure its modules are work together on your specific system:
|
|
59
106
|
(Install anaconda at the link below, set up a new python env for nettracer3d, then use the same pip command).
|
|
60
107
|
|
|
61
108
|
https://www.anaconda.com/download?utm_source=anacondadocs&utm_medium=documentation&utm_campaign=download&utm_content=installwindows
|
|
62
109
|
|
|
63
|
-
|
|
64
|
-
|
|
110
|
+
|
|
111
|
+
--- Using the downloadable version ---
|
|
112
|
+
|
|
113
|
+
Alternatively, you can download a compiled .exe of version 1.2.7 here: https://doi.org/10.5281/zenodo.17873800
|
|
114
|
+
|
|
115
|
+
Unzip the folder, then double click the NetTracer3D executable to run the program. Note that this version will be missing a few features compared to the Python package, namely GPU segmentation support and the ability to print updates to the command window. It will also not be updated as often.
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
--- Optional Packages ---
|
|
119
|
+
|
|
65
120
|
I recommend including Napari (Chi-Li Chiu, Nathan Clack, the napari community, napari: a Python Multi-Dimensional Image Viewer Platform for the Research Community, Microscopy and Microanalysis, Volume 28, Issue S1, 1 August 2022, Pages 1576–1577, https://doi.org/10.1017/S1431927622006328) in the download as well, which allows NetTracer3D to use 3D displays. The standard package only comes with its native 2D slice display window.
|
|
66
121
|
If Napari is present, all 3D images and overlays from NetTracer3D can be easily displayed in 3D with a click of a button. To package with Napari, use this install command instead:
|
|
67
122
|
|
|
@@ -74,13 +129,13 @@ To include Cellpose3 in the install, use this command:
|
|
|
74
129
|
|
|
75
130
|
pip install nettracer3d[cellpose]
|
|
76
131
|
|
|
77
|
-
Alternatively,
|
|
132
|
+
Alternatively, Napari, Cellpose, and edt can be included in the package with this command: (Or they can be independently installed with pip from the base package env)
|
|
78
133
|
|
|
79
134
|
|
|
80
135
|
pip install nettracer3d[all]
|
|
81
136
|
|
|
82
|
-
|
|
83
|
-
|
|
137
|
+
|
|
138
|
+
--- GPU ---
|
|
84
139
|
NetTracer3D is mostly CPU-bound, but a few functions can optionally use the GPU. To install optional GPU functionalities, first set up a CUDA toolkit that runs with the GPU on your machine. This requires an NVIDIA GPU. Then, find your GPUs compatible CUDA toolkit and install it with the auto-installer from the NVIDIA website: https://developer.nvidia.com/cuda-toolkit
|
|
85
140
|
|
|
86
141
|
With a CUDA toolkit installed, use:
|
|
@@ -101,21 +156,14 @@ While not related to NetTracer3D, if you want to use Cellpose3 (for which GPU-us
|
|
|
101
156
|
This gui is built from the PyQt6 package and therefore may not function on dockers or virtual envs that are unable to support PyQt6 displays.
|
|
102
157
|
|
|
103
158
|
|
|
104
|
-
|
|
159
|
+
NetTracer3D is freely available for academic and nonprofit use and can obtained from pip (pip install nettracer3d), provided that citation is included in any abstract, paper, or presentation utilizing NetTracer3D.
|
|
105
160
|
|
|
106
|
-
|
|
107
|
-
The current citation is here:
|
|
108
|
-
|
|
109
|
-
McLaughlin, L., Zhang, B., Sharma, S. et al. Three dimensional multiscalar neurovascular nephron connectivity map of the human kidney across the lifespan. Nat Commun 16, 5161 (2025). https://doi.org/10.1038/s41467-025-60435-8
|
|
161
|
+
(The official paper to cite is coming soon)
|
|
110
162
|
|
|
111
163
|
NetTracer3D was developed by Liam McLaughlin while working under Dr. Sanjay Jain at Washington University School of Medicine.
|
|
112
164
|
|
|
113
|
-
-- Version 1.
|
|
165
|
+
-- Version 1.2.8 Updates --
|
|
114
166
|
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
* Added the 'filaments tracer' which can be used to improve vessel based segmentations
|
|
118
|
-
* Removed options for 'cubic' downsampling during processing as this option actually made outputs worse.
|
|
119
|
-
* Rearranged the 'Analyze -> Stats' menu
|
|
120
|
-
|
|
167
|
+
* Made edt an optional dependency.
|
|
168
|
+
* Updated readme
|
|
121
169
|
|
|
@@ -1,22 +1,72 @@
|
|
|
1
1
|
NetTracer3D is a python package developed for both 2D and 3D analysis of microscopic images in the .tif file format. It supports generation of 3D networks showing the relationships between objects (or nodes) in three dimensional space, either based on their own proximity or connectivity via connecting objects such as nerves or blood vessels. In addition to these functionalities are several advanced 3D data processing algorithms, such as labeling of branched structures or abstraction of branched structures into networks. Note that nettracer3d uses segmented data, which can be segmented from other softwares such as ImageJ and imported into NetTracer3D, although it does offer its own segmentation via intensity and volumetric thresholding, or random forest machine learning segmentation. NetTracer3D currently has a fully functional GUI. To use the GUI, after installing the nettracer3d package via pip, enter the command 'nettracer3d' in your command prompt:
|
|
2
2
|
|
|
3
|
+
|
|
3
4
|
--- Documentation ---
|
|
4
5
|
|
|
5
6
|
Please see: https://nettracer3d.readthedocs.io/en/latest/
|
|
6
7
|
|
|
7
|
-
--- Installation ---
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
--- Video Tutorial ---
|
|
10
|
+
|
|
11
|
+
Please see: https://www.youtube.com/watch?v=_4uDy0mzG94&list=PLsrhxiimzKJMZ3_gTWkfrcAdJQQobUhj7
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
--- Installing as a Python package ---
|
|
15
|
+
|
|
16
|
+
1. **Get Python and Pip on your path**: To install nettracer3d, first install Python version 3.12. Make sure the Python installation installs pip, and that both Python and pip are available on your PATH. I recommend installing Python using the installer which is available here. Make sure to check the option to 'add Python to PATH' when it appears: https://www.python.org/downloads/
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
2. **Base Package**: Next, use this command in your command terminal
|
|
20
|
+
|
|
21
|
+
* pip install nettracer3d
|
|
22
|
+
|
|
23
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
24
|
+
|
|
25
|
+
3. **For 3D Displays**: Or if you also want Napari for 3D displays:
|
|
26
|
+
|
|
27
|
+
* pip install nettracer3d[viz]
|
|
28
|
+
|
|
29
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
30
|
+
|
|
31
|
+
4. **Optional Performance Boost**: If you are trying to process large images, you may also want to include the 'edt' module in your package. This will allow parallelized CPU calculations for several of the search functions which can increase their speed by an order of magnitude or more depending on how many cores your CPU has. This can be a major benefit if you have a strong CPU and sufficient RAM. It requires an extra pre-installation step, thus is not included by default. You will also have to install the C++ build tools from windows. Please head to this link, then download and run the installer: https://visualstudio.microsoft.com/visual-cpp-build-tools/. In the menu of the installer, select the 'Desktop Development with C++' option, then proceed to download/install it using the installation menu. You will likely want to be using the Python distributed from the actual Python website and not the windows store (or elsewhere) or the edt module may not work properly. To bundle with edt use:
|
|
32
|
+
|
|
33
|
+
* pip install nettracer3d[edt]
|
|
34
|
+
|
|
35
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
36
|
+
|
|
10
37
|
|
|
11
|
-
|
|
38
|
+
5. **Recommended full package**: Or if you want to just get both edt and napari at once:
|
|
39
|
+
|
|
40
|
+
* pip install nettracer3d[rec]
|
|
41
|
+
|
|
42
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
6. Likewise, if you already installed the default version, you can add napari and/or edt with just:
|
|
46
|
+
|
|
47
|
+
* pip install edt
|
|
48
|
+
* pip install napari
|
|
49
|
+
|
|
50
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
--- Installing as a Python package in Anaconda---
|
|
12
54
|
|
|
13
55
|
I recommend installing the program as an Anaconda package to ensure its modules are work together on your specific system:
|
|
14
56
|
(Install anaconda at the link below, set up a new python env for nettracer3d, then use the same pip command).
|
|
15
57
|
|
|
16
58
|
https://www.anaconda.com/download?utm_source=anacondadocs&utm_medium=documentation&utm_campaign=download&utm_content=installwindows
|
|
17
59
|
|
|
18
|
-
|
|
19
|
-
|
|
60
|
+
|
|
61
|
+
--- Using the downloadable version ---
|
|
62
|
+
|
|
63
|
+
Alternatively, you can download a compiled .exe of version 1.2.7 here: https://doi.org/10.5281/zenodo.17873800
|
|
64
|
+
|
|
65
|
+
Unzip the folder, then double click the NetTracer3D executable to run the program. Note that this version will be missing a few features compared to the Python package, namely GPU segmentation support and the ability to print updates to the command window. It will also not be updated as often.
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
--- Optional Packages ---
|
|
69
|
+
|
|
20
70
|
I recommend including Napari (Chi-Li Chiu, Nathan Clack, the napari community, napari: a Python Multi-Dimensional Image Viewer Platform for the Research Community, Microscopy and Microanalysis, Volume 28, Issue S1, 1 August 2022, Pages 1576–1577, https://doi.org/10.1017/S1431927622006328) in the download as well, which allows NetTracer3D to use 3D displays. The standard package only comes with its native 2D slice display window.
|
|
21
71
|
If Napari is present, all 3D images and overlays from NetTracer3D can be easily displayed in 3D with a click of a button. To package with Napari, use this install command instead:
|
|
22
72
|
|
|
@@ -29,13 +79,13 @@ To include Cellpose3 in the install, use this command:
|
|
|
29
79
|
|
|
30
80
|
pip install nettracer3d[cellpose]
|
|
31
81
|
|
|
32
|
-
Alternatively,
|
|
82
|
+
Alternatively, Napari, Cellpose, and edt can be included in the package with this command: (Or they can be independently installed with pip from the base package env)
|
|
33
83
|
|
|
34
84
|
|
|
35
85
|
pip install nettracer3d[all]
|
|
36
86
|
|
|
37
|
-
|
|
38
|
-
|
|
87
|
+
|
|
88
|
+
--- GPU ---
|
|
39
89
|
NetTracer3D is mostly CPU-bound, but a few functions can optionally use the GPU. To install optional GPU functionalities, first set up a CUDA toolkit that runs with the GPU on your machine. This requires an NVIDIA GPU. Then, find your GPUs compatible CUDA toolkit and install it with the auto-installer from the NVIDIA website: https://developer.nvidia.com/cuda-toolkit
|
|
40
90
|
|
|
41
91
|
With a CUDA toolkit installed, use:
|
|
@@ -56,21 +106,14 @@ While not related to NetTracer3D, if you want to use Cellpose3 (for which GPU-us
|
|
|
56
106
|
This gui is built from the PyQt6 package and therefore may not function on dockers or virtual envs that are unable to support PyQt6 displays.
|
|
57
107
|
|
|
58
108
|
|
|
59
|
-
|
|
109
|
+
NetTracer3D is freely available for academic and nonprofit use and can obtained from pip (pip install nettracer3d), provided that citation is included in any abstract, paper, or presentation utilizing NetTracer3D.
|
|
60
110
|
|
|
61
|
-
|
|
62
|
-
The current citation is here:
|
|
63
|
-
|
|
64
|
-
McLaughlin, L., Zhang, B., Sharma, S. et al. Three dimensional multiscalar neurovascular nephron connectivity map of the human kidney across the lifespan. Nat Commun 16, 5161 (2025). https://doi.org/10.1038/s41467-025-60435-8
|
|
111
|
+
(The official paper to cite is coming soon)
|
|
65
112
|
|
|
66
113
|
NetTracer3D was developed by Liam McLaughlin while working under Dr. Sanjay Jain at Washington University School of Medicine.
|
|
67
114
|
|
|
68
|
-
-- Version 1.
|
|
115
|
+
-- Version 1.2.8 Updates --
|
|
69
116
|
|
|
70
|
-
*
|
|
71
|
-
*
|
|
72
|
-
* Added the 'filaments tracer' which can be used to improve vessel based segmentations
|
|
73
|
-
* Removed options for 'cubic' downsampling during processing as this option actually made outputs worse.
|
|
74
|
-
* Rearranged the 'Analyze -> Stats' menu
|
|
75
|
-
|
|
117
|
+
* Made edt an optional dependency.
|
|
118
|
+
* Updated readme
|
|
76
119
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "nettracer3d"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.2.8"
|
|
4
4
|
authors = [
|
|
5
5
|
{ name="Liam McLaughlin", email="liamm@wustl.edu" },
|
|
6
6
|
]
|
|
@@ -20,10 +20,8 @@ dependencies = [
|
|
|
20
20
|
"qtrangeslider",
|
|
21
21
|
"PyQt6",
|
|
22
22
|
"scikit-learn",
|
|
23
|
-
"nibabel",
|
|
24
23
|
"setuptools",
|
|
25
|
-
"umap-learn"
|
|
26
|
-
]
|
|
24
|
+
"umap-learn"]
|
|
27
25
|
|
|
28
26
|
readme = "README.md"
|
|
29
27
|
requires-python = ">=3.7"
|
|
@@ -42,14 +40,16 @@ cupy = ["cupy"]
|
|
|
42
40
|
# Features
|
|
43
41
|
cellpose = ["cellpose[GUI]"]
|
|
44
42
|
viz = ["napari"]
|
|
43
|
+
rec = ["napari", "edt"]
|
|
44
|
+
edt = ["edt"]
|
|
45
45
|
|
|
46
46
|
# All non-GPU features
|
|
47
|
-
all = ["cellpose[GUI]", "napari"]
|
|
47
|
+
all = ["cellpose[GUI]", "napari", "edt"]
|
|
48
48
|
|
|
49
49
|
[project.scripts]
|
|
50
50
|
nettracer3d = "nettracer3d.run:main"
|
|
51
51
|
|
|
52
52
|
[project.urls]
|
|
53
53
|
Documentation = "https://nettracer3d.readthedocs.io/en/latest/"
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
Youtube_Tutorial = "https://www.youtube.com/watch?v=_4uDy0mzG94&list=PLsrhxiimzKJMZ3_gTWkfrcAdJQQobUhj7"
|
|
55
|
+
Downloadable_Version = "https://doi.org/10.5281/zenodo.17873800"
|