nettracer3d 0.8.0__tar.gz → 0.8.1__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.
Potentially problematic release.
This version of nettracer3d might be problematic. Click here for more details.
- {nettracer3d-0.8.0/src/nettracer3d.egg-info → nettracer3d-0.8.1}/PKG-INFO +5 -8
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/README.md +5 -8
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/pyproject.toml +1 -1
- nettracer3d-0.8.1/src/nettracer3d/neighborhoods.py +691 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/nettracer.py +120 -10
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/nettracer_gui.py +276 -15
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/node_draw.py +22 -12
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/proximity.py +63 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1/src/nettracer3d.egg-info}/PKG-INFO +5 -8
- nettracer3d-0.8.0/src/nettracer3d/neighborhoods.py +0 -354
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/LICENSE +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/setup.cfg +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/__init__.py +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/community_extractor.py +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/excelotron.py +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/modularity.py +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/morphology.py +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/network_analysis.py +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/network_draw.py +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/run.py +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/segmenter.py +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/segmenter_GPU.py +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/simple_network.py +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d/smart_dilate.py +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d.egg-info/SOURCES.txt +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d.egg-info/dependency_links.txt +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d.egg-info/entry_points.txt +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d.egg-info/requires.txt +0 -0
- {nettracer3d-0.8.0 → nettracer3d-0.8.1}/src/nettracer3d.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nettracer3d
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.1
|
|
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/
|
|
@@ -73,11 +73,8 @@ NetTracer3D is free to use/fork for academic/nonprofit use so long as citation i
|
|
|
73
73
|
|
|
74
74
|
NetTracer3D was developed by Liam McLaughlin while working under Dr. Sanjay Jain at Washington University School of Medicine.
|
|
75
75
|
|
|
76
|
-
-- Version 0.8.
|
|
76
|
+
-- Version 0.8.1 Updates --
|
|
77
77
|
|
|
78
|
-
* Added
|
|
79
|
-
*
|
|
80
|
-
* Bug fixes and
|
|
81
|
-
* Added ability to 'merge node identities' which just uses the nodes image as a reference for collecting 'identity' information from a group of other images - ie can use with cell nuclei (DAPI) to see what markers from the same imaging session overlap.
|
|
82
|
-
* Added ability to search for specific nodes directly in the nodes image with 'shift + f' or right click.
|
|
83
|
-
|
|
78
|
+
* Added nearest neighbor evaluation function (Analysis -> Stats -> Avg Nearest Neighbor)
|
|
79
|
+
* Added heatmap outputs for node degrees (Analysis -> Data/Overlays -> Get Degree Information).
|
|
80
|
+
* Bug fixes and misc improvements.
|
|
@@ -34,11 +34,8 @@ NetTracer3D is free to use/fork for academic/nonprofit use so long as citation i
|
|
|
34
34
|
|
|
35
35
|
NetTracer3D was developed by Liam McLaughlin while working under Dr. Sanjay Jain at Washington University School of Medicine.
|
|
36
36
|
|
|
37
|
-
-- Version 0.8.
|
|
38
|
-
|
|
39
|
-
* Added
|
|
40
|
-
*
|
|
41
|
-
* Bug fixes and
|
|
42
|
-
* Added ability to 'merge node identities' which just uses the nodes image as a reference for collecting 'identity' information from a group of other images - ie can use with cell nuclei (DAPI) to see what markers from the same imaging session overlap.
|
|
43
|
-
* Added ability to search for specific nodes directly in the nodes image with 'shift + f' or right click.
|
|
44
|
-
|
|
37
|
+
-- Version 0.8.1 Updates --
|
|
38
|
+
|
|
39
|
+
* Added nearest neighbor evaluation function (Analysis -> Stats -> Avg Nearest Neighbor)
|
|
40
|
+
* Added heatmap outputs for node degrees (Analysis -> Data/Overlays -> Get Degree Information).
|
|
41
|
+
* Bug fixes and misc improvements.
|