spacr 0.2.5__py3-none-any.whl → 0.2.8__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.
- spacr/__init__.py +1 -11
- spacr/core.py +226 -287
- spacr/deep_spacr.py +248 -269
- spacr/gui.py +41 -19
- spacr/gui_core.py +404 -151
- spacr/gui_elements.py +778 -179
- spacr/gui_utils.py +163 -106
- spacr/io.py +116 -45
- spacr/measure.py +1 -0
- spacr/plot.py +51 -5
- spacr/sequencing.py +477 -587
- spacr/settings.py +211 -66
- spacr/utils.py +34 -14
- {spacr-0.2.5.dist-info → spacr-0.2.8.dist-info}/METADATA +46 -39
- {spacr-0.2.5.dist-info → spacr-0.2.8.dist-info}/RECORD +19 -19
- {spacr-0.2.5.dist-info → spacr-0.2.8.dist-info}/WHEEL +1 -1
- {spacr-0.2.5.dist-info → spacr-0.2.8.dist-info}/LICENSE +0 -0
- {spacr-0.2.5.dist-info → spacr-0.2.8.dist-info}/entry_points.txt +0 -0
- {spacr-0.2.5.dist-info → spacr-0.2.8.dist-info}/top_level.txt +0 -0
spacr/__init__.py
CHANGED
@@ -17,7 +17,6 @@ from . import gui_utils
|
|
17
17
|
from . import gui_elements
|
18
18
|
from . import gui_core
|
19
19
|
from . import gui
|
20
|
-
from . import gui
|
21
20
|
from . import app_make_masks
|
22
21
|
from . import app_mask
|
23
22
|
from . import app_measure
|
@@ -35,7 +34,7 @@ __all__ = [
|
|
35
34
|
"plot",
|
36
35
|
"measure",
|
37
36
|
"sim",
|
38
|
-
"sequencing"
|
37
|
+
"sequencing",
|
39
38
|
"timelapse",
|
40
39
|
"deep_spacr",
|
41
40
|
"app_annotate",
|
@@ -43,7 +42,6 @@ __all__ = [
|
|
43
42
|
"gui_elements",
|
44
43
|
"gui_core",
|
45
44
|
"gui",
|
46
|
-
"gui",
|
47
45
|
"app_make_masks",
|
48
46
|
"app_mask",
|
49
47
|
"app_measure",
|
@@ -53,13 +51,5 @@ __all__ = [
|
|
53
51
|
"logger"
|
54
52
|
]
|
55
53
|
|
56
|
-
# Check for CUDA GPU availability
|
57
|
-
if torch.cuda.is_available():
|
58
|
-
from . import graph_learning
|
59
|
-
__all__.append("graph_learning")
|
60
|
-
logging.info("CUDA GPU detected. Graph learning module loaded.")
|
61
|
-
else:
|
62
|
-
logging.info("No CUDA GPU detected. Graph learning module not loaded.")
|
63
|
-
|
64
54
|
logging.basicConfig(filename='spacr.log', level=logging.INFO,
|
65
55
|
format='%(asctime)s:%(levelname)s:%(message)s')
|