nettracer3d 0.7.8__py3-none-any.whl → 0.7.9__py3-none-any.whl
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/nettracer_gui.py +6 -3
- {nettracer3d-0.7.8.dist-info → nettracer3d-0.7.9.dist-info}/METADATA +4 -12
- {nettracer3d-0.7.8.dist-info → nettracer3d-0.7.9.dist-info}/RECORD +7 -7
- {nettracer3d-0.7.8.dist-info → nettracer3d-0.7.9.dist-info}/WHEEL +0 -0
- {nettracer3d-0.7.8.dist-info → nettracer3d-0.7.9.dist-info}/entry_points.txt +0 -0
- {nettracer3d-0.7.8.dist-info → nettracer3d-0.7.9.dist-info}/licenses/LICENSE +0 -0
- {nettracer3d-0.7.8.dist-info → nettracer3d-0.7.9.dist-info}/top_level.txt +0 -0
nettracer3d/nettracer_gui.py
CHANGED
|
@@ -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
|
-
|
|
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 =
|
|
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 =
|
|
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.
|
|
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.
|
|
77
|
-
|
|
78
|
-
*
|
|
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.
|
|
@@ -5,7 +5,7 @@ nettracer3d/modularity.py,sha256=O9OeKbjD3v6gSFz9K2GzP6LsxlpQaPfeJbM1pyIEigw,217
|
|
|
5
5
|
nettracer3d/morphology.py,sha256=jyDjYzrZ4LvI5jOyw8DLsxmo-i5lpqHsejYpW7Tq7Mo,19786
|
|
6
6
|
nettracer3d/neighborhoods.py,sha256=kkKR8m6Gjw34cDd_mytAIwLxqvuNBtQb2hU4JuBY9pI,12301
|
|
7
7
|
nettracer3d/nettracer.py,sha256=M1KFIPg7WCzm8BXQOreuEVhgjg0PpLKRg4Y88DyVuK8,225843
|
|
8
|
-
nettracer3d/nettracer_gui.py,sha256=
|
|
8
|
+
nettracer3d/nettracer_gui.py,sha256=wdx_9putVHl0H4NIf_Bnmj0epgDb7OEMZYXb8pD8cYo,468815
|
|
9
9
|
nettracer3d/network_analysis.py,sha256=h-5yzUWdE0hcWYy8wcBA5LV1bRhdqiMnKbQLrRzb1Sw,41443
|
|
10
10
|
nettracer3d/network_draw.py,sha256=F7fw6Pcf4qWOhdKwLmhwqWdschbDlHzwCVolQC9imeU,14117
|
|
11
11
|
nettracer3d/node_draw.py,sha256=k3sCTfUCJs3aH1C1q1gTNxDz9EAQbBd1hsUIJajxRx8,9823
|
|
@@ -15,9 +15,9 @@ nettracer3d/segmenter.py,sha256=BD9vxnblDKXfmR8hLP_iVqqfVngH6opz4Q7V6sxc2KM,6006
|
|
|
15
15
|
nettracer3d/segmenter_GPU.py,sha256=Fqr0Za6X2ss4rfaziqOhvhBfbGDPHkHw6fVxs39lZaU,53862
|
|
16
16
|
nettracer3d/simple_network.py,sha256=Ft_81VhVQ3rqoXvuYnsckXuxCcQSJfakhOfkFaclxZY,9340
|
|
17
17
|
nettracer3d/smart_dilate.py,sha256=DOEOQq9ig6-AO4MpqAG0CqrGDFqw5_UBeqfSedqHk28,25933
|
|
18
|
-
nettracer3d-0.7.
|
|
19
|
-
nettracer3d-0.7.
|
|
20
|
-
nettracer3d-0.7.
|
|
21
|
-
nettracer3d-0.7.
|
|
22
|
-
nettracer3d-0.7.
|
|
23
|
-
nettracer3d-0.7.
|
|
18
|
+
nettracer3d-0.7.9.dist-info/licenses/LICENSE,sha256=gM207DhJjWrxLuEWXl0Qz5ISbtWDmADfjHp3yC2XISs,888
|
|
19
|
+
nettracer3d-0.7.9.dist-info/METADATA,sha256=3EyPBVXOMeZqA9D4vTpBvhOo6wOj_5KHW5lacpuApEk,4254
|
|
20
|
+
nettracer3d-0.7.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
21
|
+
nettracer3d-0.7.9.dist-info/entry_points.txt,sha256=Nx1rr_0QhJXDBHAQg2vcqCzLMKBzSHfwy3xwGkueVyc,53
|
|
22
|
+
nettracer3d-0.7.9.dist-info/top_level.txt,sha256=zsYy9rZwirfCEOubolhee4TyzqBAL5gSUeFMzhFTX8c,12
|
|
23
|
+
nettracer3d-0.7.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|