nettracer3d 1.1.6__tar.gz → 1.1.9__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.

Files changed (33) hide show
  1. {nettracer3d-1.1.6/src/nettracer3d.egg-info → nettracer3d-1.1.9}/PKG-INFO +9 -3
  2. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/README.md +9 -3
  3. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/pyproject.toml +1 -1
  4. nettracer3d-1.1.9/src/nettracer3d/filaments.py +1074 -0
  5. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/neighborhoods.py +14 -5
  6. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/nettracer.py +85 -17
  7. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/nettracer_gui.py +1165 -338
  8. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/proximity.py +123 -2
  9. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/smart_dilate.py +36 -0
  10. nettracer3d-1.1.9/src/nettracer3d/tutorial.py +2853 -0
  11. {nettracer3d-1.1.6 → nettracer3d-1.1.9/src/nettracer3d.egg-info}/PKG-INFO +9 -3
  12. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d.egg-info/SOURCES.txt +2 -0
  13. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/LICENSE +0 -0
  14. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/setup.cfg +0 -0
  15. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/__init__.py +0 -0
  16. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/cellpose_manager.py +0 -0
  17. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/community_extractor.py +0 -0
  18. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/excelotron.py +0 -0
  19. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/modularity.py +0 -0
  20. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/morphology.py +0 -0
  21. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/network_analysis.py +0 -0
  22. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/network_draw.py +0 -0
  23. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/node_draw.py +0 -0
  24. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/painting.py +0 -0
  25. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/run.py +0 -0
  26. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/segmenter.py +0 -0
  27. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/segmenter_GPU.py +0 -0
  28. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/simple_network.py +0 -0
  29. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d/stats.py +0 -0
  30. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d.egg-info/dependency_links.txt +0 -0
  31. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d.egg-info/entry_points.txt +0 -0
  32. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/src/nettracer3d.egg-info/requires.txt +0 -0
  33. {nettracer3d-1.1.6 → nettracer3d-1.1.9}/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: 1.1.6
3
+ Version: 1.1.9
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/
@@ -110,6 +110,12 @@ McLaughlin, L., Zhang, B., Sharma, S. et al. Three dimensional multiscalar neuro
110
110
 
111
111
  NetTracer3D was developed by Liam McLaughlin while working under Dr. Sanjay Jain at Washington University School of Medicine.
112
112
 
113
- -- Version 1.1.6 Updates --
113
+ -- Version 1.1.9 Updates --
114
114
 
115
- * Some adjustments
115
+ * Fixed saving of Boolean True/False arrays.
116
+ * Fixed branch functions not working correctly when a temporary downsample was being applied
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
+
121
+
@@ -65,6 +65,12 @@ McLaughlin, L., Zhang, B., Sharma, S. et al. Three dimensional multiscalar neuro
65
65
 
66
66
  NetTracer3D was developed by Liam McLaughlin while working under Dr. Sanjay Jain at Washington University School of Medicine.
67
67
 
68
- -- Version 1.1.6 Updates --
69
-
70
- * Some adjustments
68
+ -- Version 1.1.9 Updates --
69
+
70
+ * Fixed saving of Boolean True/False arrays.
71
+ * Fixed branch functions not working correctly when a temporary downsample was being applied
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
+
76
+
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nettracer3d"
3
- version = "1.1.6"
3
+ version = "1.1.9"
4
4
  authors = [
5
5
  { name="Liam McLaughlin", email="liamm@wustl.edu" },
6
6
  ]