Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/murfey/workflows/clem/register_align_and_merge_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
class AlignAndMergeResult(BaseModel):
series_name: str
image_stacks: list[Path]
align_self: Optional[str] = None
flatten: Optional[str] = "mean"
align_across: Optional[str] = None
align_self: bool = False
flatten: bool = True
align_across: bool = False
output_file: Path
thumbnail: Optional[Path] = None
thumbnail_size: Optional[tuple[int, int]] = None
Expand Down
6 changes: 3 additions & 3 deletions tests/workflows/clem/test_register_align_and_merge_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ def test_run(
"result": {
"series_name": incoming_series_name,
"image_stacks": [],
"align_self": None,
"flatten": None,
"align_across": None,
"align_self": False,
"flatten": True,
"align_across": False,
"output_file": tmp_path / "dummy",
"thumbnail": None,
"thumbnail_size": None,
Expand Down