nettracer3d 0.7.8__tar.gz → 0.7.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 (28) hide show
  1. {nettracer3d-0.7.8/src/nettracer3d.egg-info → nettracer3d-0.7.9}/PKG-INFO +4 -12
  2. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/README.md +3 -11
  3. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/pyproject.toml +1 -1
  4. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/nettracer_gui.py +6 -3
  5. {nettracer3d-0.7.8 → nettracer3d-0.7.9/src/nettracer3d.egg-info}/PKG-INFO +4 -12
  6. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/LICENSE +0 -0
  7. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/setup.cfg +0 -0
  8. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/__init__.py +0 -0
  9. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/community_extractor.py +0 -0
  10. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/excelotron.py +0 -0
  11. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/modularity.py +0 -0
  12. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/morphology.py +0 -0
  13. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/neighborhoods.py +0 -0
  14. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/nettracer.py +0 -0
  15. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/network_analysis.py +0 -0
  16. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/network_draw.py +0 -0
  17. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/node_draw.py +0 -0
  18. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/proximity.py +0 -0
  19. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/run.py +0 -0
  20. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/segmenter.py +0 -0
  21. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/segmenter_GPU.py +0 -0
  22. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/simple_network.py +0 -0
  23. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d/smart_dilate.py +0 -0
  24. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d.egg-info/SOURCES.txt +0 -0
  25. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d.egg-info/dependency_links.txt +0 -0
  26. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d.egg-info/entry_points.txt +0 -0
  27. {nettracer3d-0.7.8 → nettracer3d-0.7.9}/src/nettracer3d.egg-info/requires.txt +0 -0
  28. {nettracer3d-0.7.8 → nettracer3d-0.7.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: 0.7.8
3
+ Version: 0.7.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/
@@ -73,14 +73,6 @@ 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.7.8 (and 0.7.7) Updates --
77
-
78
- * Bug Fixes
79
- * Added the excel helper loader for better automated loading from QuPath exports specifically
80
- * Added the ability to cluster communities into broader neighborhoods (with KMeans) based on their compositions.
81
- * Added heatmap and UMAP graph displays based on community compositions.
82
- * Added the ability to show heatmaps of nodes based on their density within their communities
83
- * Added the ability to cluster nodes into communities based on spatial grouping in arbitrarily-sized cells (rather than just using the network)
84
- * Added function to crop the current image
85
- * More options under 'Modify Network'
86
- * 'Show 3D' method now can render a bounding box.
76
+ -- Version 0.7.9 Updates --
77
+
78
+ * The GPU segmenter was being imported regardless of GPU status, causing the program to fail without cupy (which should be optional), fixed that.
@@ -34,14 +34,6 @@ 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.7.8 (and 0.7.7) Updates --
38
-
39
- * Bug Fixes
40
- * Added the excel helper loader for better automated loading from QuPath exports specifically
41
- * Added the ability to cluster communities into broader neighborhoods (with KMeans) based on their compositions.
42
- * Added heatmap and UMAP graph displays based on community compositions.
43
- * Added the ability to show heatmaps of nodes based on their density within their communities
44
- * Added the ability to cluster nodes into communities based on spatial grouping in arbitrarily-sized cells (rather than just using the network)
45
- * Added function to crop the current image
46
- * More options under 'Modify Network'
47
- * 'Show 3D' method now can render a bounding box.
37
+ -- Version 0.7.9 Updates --
38
+
39
+ * The GPU segmenter was being imported regardless of GPU status, causing the program to fail without cupy (which should be optional), fixed that.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nettracer3d"
3
- version = "0.7.8"
3
+ version = "0.7.9"
4
4
  authors = [
5
5
  { name="Liam McLaughlin", email="liamm@wustl.edu" },
6
6
  ]
@@ -25,7 +25,10 @@ import multiprocessing as mp
25
25
  from concurrent.futures import ThreadPoolExecutor
26
26
  from functools import partial
27
27
  from nettracer3d import segmenter
28
- from nettracer3d import segmenter_GPU
28
+ try:
29
+ from nettracer3d import segmenter_GPU as seg_GPU
30
+ except:
31
+ pass
29
32
  from nettracer3d import excelotron
30
33
 
31
34
 
@@ -8290,7 +8293,7 @@ class MachineWindow(QMainWindow):
8290
8293
  if not GPU:
8291
8294
  self.segmenter = segmenter.InteractiveSegmenter(active_data, use_gpu=False)
8292
8295
  else:
8293
- self.segmenter = segmenter_GPU.InteractiveSegmenter(active_data)
8296
+ self.segmenter = seg_GPU.InteractiveSegmenter(active_data)
8294
8297
 
8295
8298
  self.segmentation_worker = None
8296
8299
 
@@ -8396,7 +8399,7 @@ class MachineWindow(QMainWindow):
8396
8399
  if self.GPU.isChecked():
8397
8400
 
8398
8401
  try:
8399
- self.segmenter = segmenter_GPU.InteractiveSegmenter(active_data)
8402
+ self.segmenter = seg_GPU.InteractiveSegmenter(active_data)
8400
8403
  print("Using GPU")
8401
8404
  except:
8402
8405
  self.GPU.setChecked(False)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nettracer3d
3
- Version: 0.7.8
3
+ Version: 0.7.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/
@@ -73,14 +73,6 @@ 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.7.8 (and 0.7.7) Updates --
77
-
78
- * Bug Fixes
79
- * Added the excel helper loader for better automated loading from QuPath exports specifically
80
- * Added the ability to cluster communities into broader neighborhoods (with KMeans) based on their compositions.
81
- * Added heatmap and UMAP graph displays based on community compositions.
82
- * Added the ability to show heatmaps of nodes based on their density within their communities
83
- * Added the ability to cluster nodes into communities based on spatial grouping in arbitrarily-sized cells (rather than just using the network)
84
- * Added function to crop the current image
85
- * More options under 'Modify Network'
86
- * 'Show 3D' method now can render a bounding box.
76
+ -- Version 0.7.9 Updates --
77
+
78
+ * The GPU segmenter was being imported regardless of GPU status, causing the program to fail without cupy (which should be optional), fixed that.
File without changes
File without changes