66from __future__ import annotations
77
88from pathlib import Path
9- from typing import Literal , Optional
9+ from typing import Optional
1010
1111from murfey .util .config import get_machine_config
1212
@@ -24,11 +24,6 @@ def run(
2424 series_name : str ,
2525 images : list [Path ],
2626 metadata : Path ,
27- # Optional processing parameters
28- crop_to_n_frames : Optional [int ] = None ,
29- align_self : Literal ["enabled" , "" ] = "" ,
30- flatten : Literal ["mean" , "min" , "max" , "" ] = "mean" ,
31- align_across : Literal ["enabled" , "" ] = "" ,
3227 # Optional session parameters
3328 messenger : Optional [TransportManager ] = None ,
3429):
@@ -65,10 +60,6 @@ def run(
6560 "series_name" : series_name ,
6661 "images" : [str (file ) for file in images ],
6762 "metadata" : str (metadata ),
68- "crop_to_n_frames" : crop_to_n_frames ,
69- "align_self" : align_self ,
70- "flatten" : flatten ,
71- "align_across" : align_across ,
7263 # Other recipe parameters
7364 "session_dir" : str (session_dir ),
7465 "session_id" : session_id ,
0 commit comments