pigeon-tem-comms 0.3.0__tar.gz → 0.4.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.
- {pigeon_tem_comms-0.3.0/pigeon_tem_comms.egg-info → pigeon_tem_comms-0.4.1}/PKG-INFO +1 -1
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/TEM_comms/__init__.py +5 -7
- pigeon_tem_comms-0.4.1/TEM_comms/montage.py +15 -0
- pigeon_tem_comms-0.4.1/TEM_comms/qc.py +6 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/TEM_comms/tile/__init__.py +8 -6
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/TEM_comms/tile/statistics.py +4 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1/pigeon_tem_comms.egg-info}/PKG-INFO +1 -1
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/pigeon_tem_comms.egg-info/SOURCES.txt +3 -0
- pigeon_tem_comms-0.4.1/pigeon_tem_comms.egg-info/entry_points.txt +2 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/pyproject.toml +2 -2
- pigeon_tem_comms-0.4.1/tests/test_qc.py +8 -0
- pigeon_tem_comms-0.3.0/pigeon_tem_comms.egg-info/entry_points.txt +0 -2
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/LICENSE +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/README.md +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/TEM_comms/buffer.py +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/TEM_comms/camera.py +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/TEM_comms/scope.py +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/TEM_comms/stage/__init__.py +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/TEM_comms/stage/aperture.py +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/TEM_comms/stage/motion.py +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/TEM_comms/stage/rotation.py +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/TEM_comms/ui.py +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/pigeon_tem_comms.egg-info/dependency_links.txt +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/pigeon_tem_comms.egg-info/requires.txt +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/pigeon_tem_comms.egg-info/top_level.txt +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/setup.cfg +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/tests/test_buffer.py +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/tests/test_scope_command.py +0 -0
- {pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/tests/test_ui.py +0 -0
|
@@ -4,11 +4,9 @@ from . import scope
|
|
|
4
4
|
from . import stage
|
|
5
5
|
from . import tile
|
|
6
6
|
from . import ui
|
|
7
|
+
from . import montage
|
|
8
|
+
from . import qc
|
|
7
9
|
|
|
8
|
-
import importlib.metadata
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
__version__ = importlib.metadata.version("pigeon-tem-comms")
|
|
12
10
|
|
|
13
11
|
topics = {
|
|
14
12
|
"buffer.status": buffer.Status,
|
|
@@ -35,7 +33,7 @@ topics = {
|
|
|
35
33
|
"ui.edit": ui.Edit,
|
|
36
34
|
"ui.run": ui.Run,
|
|
37
35
|
"ui.setup": ui.Setup,
|
|
36
|
+
"montage.start": montage.Start,
|
|
37
|
+
"montage.finished": montage.Finished,
|
|
38
|
+
"qc.status": qc.Status,
|
|
38
39
|
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
msgs = (topics, __version__)
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from pigeon import BaseMessage
|
|
2
|
+
from typing import Mapping, List, Any
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class Start(BaseMessage):
|
|
6
|
+
montage_id: str
|
|
7
|
+
num_tiles: int
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class Finished(BaseMessage):
|
|
11
|
+
montage_id: str
|
|
12
|
+
num_tiles: int
|
|
13
|
+
roi: str
|
|
14
|
+
specimen: str
|
|
15
|
+
metadata: Mapping[str, Any] | List[Any]
|
|
@@ -12,22 +12,24 @@ class Minimap(BaseMessage):
|
|
|
12
12
|
path: str
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
class Processed(BaseMessage):
|
|
16
|
-
tile_id: str
|
|
17
|
-
path: str
|
|
18
|
-
|
|
19
|
-
|
|
20
15
|
class Raw(BaseMessage):
|
|
21
16
|
tile_id: str
|
|
22
17
|
montage_id: str
|
|
23
18
|
path: str
|
|
24
19
|
row: int
|
|
25
20
|
column: int
|
|
26
|
-
overlap:
|
|
21
|
+
overlap: int
|
|
27
22
|
|
|
28
23
|
|
|
29
24
|
class Transform(BaseMessage):
|
|
25
|
+
montage_id: str
|
|
30
26
|
tile_id: str
|
|
31
27
|
rotation: float
|
|
32
28
|
x: float
|
|
33
29
|
y: float
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
class Processed(BaseMessage):
|
|
33
|
+
montage_id: str
|
|
34
|
+
tile_id: str
|
|
35
|
+
path: str
|
|
@@ -2,17 +2,21 @@ from pigeon import BaseMessage
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
class Focus(BaseMessage):
|
|
5
|
+
montage_id: str
|
|
5
6
|
tile_id: str
|
|
6
7
|
focus: float
|
|
7
8
|
|
|
8
9
|
|
|
9
10
|
class Histogram(BaseMessage):
|
|
11
|
+
montage_id: str
|
|
10
12
|
tile_id: str
|
|
11
13
|
path: str
|
|
12
14
|
|
|
13
15
|
|
|
14
16
|
class MinMaxMean(BaseMessage):
|
|
17
|
+
montage_id: str
|
|
15
18
|
tile_id: str
|
|
16
19
|
min: int
|
|
17
20
|
max: int
|
|
18
21
|
mean: int
|
|
22
|
+
|
|
@@ -4,6 +4,8 @@ pyproject.toml
|
|
|
4
4
|
TEM_comms/__init__.py
|
|
5
5
|
TEM_comms/buffer.py
|
|
6
6
|
TEM_comms/camera.py
|
|
7
|
+
TEM_comms/montage.py
|
|
8
|
+
TEM_comms/qc.py
|
|
7
9
|
TEM_comms/scope.py
|
|
8
10
|
TEM_comms/ui.py
|
|
9
11
|
TEM_comms/stage/__init__.py
|
|
@@ -19,5 +21,6 @@ pigeon_tem_comms.egg-info/entry_points.txt
|
|
|
19
21
|
pigeon_tem_comms.egg-info/requires.txt
|
|
20
22
|
pigeon_tem_comms.egg-info/top_level.txt
|
|
21
23
|
tests/test_buffer.py
|
|
24
|
+
tests/test_qc.py
|
|
22
25
|
tests/test_scope_command.py
|
|
23
26
|
tests/test_ui.py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pigeon-tem-comms"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.4.1"
|
|
4
4
|
authors = [
|
|
5
5
|
{ name="Cameron Devine", email="cameron.devine@alleninstitute.org" },
|
|
6
6
|
]
|
|
@@ -21,7 +21,7 @@ classifiers = [
|
|
|
21
21
|
]
|
|
22
22
|
|
|
23
23
|
[project.entry-points."pigeon.msgs"]
|
|
24
|
-
msgs = "TEM_comms:
|
|
24
|
+
msgs = "TEM_comms:topics"
|
|
25
25
|
|
|
26
26
|
[project.urls]
|
|
27
27
|
Homepage = "https://github.com/AllenInstitute/TEM_comms"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pigeon_tem_comms-0.3.0 → pigeon_tem_comms-0.4.1}/pigeon_tem_comms.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|