File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed
Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -99,11 +99,11 @@ murfey = "murfey.client:run"
9999"murfey_machine" = " murfey.util.config:get_extended_machine_config"
100100[project .entry-points ."murfey .workflows" ]
101101"clem.align_and_merge" = " murfey.workflows.clem.align_and_merge:submit_cluster_request"
102+ "clem.process_raw_lifs" = " murfey.workflows.clem.process_raw_lifs:zocalo_cluster_request"
103+ "clem.process_raw_tiffs" = " murfey.workflows.clem.process_raw_tiffs:zocalo_cluster_request"
102104"clem.register_align_and_merge_result" = " murfey.workflows.clem.register_align_and_merge_results:register_align_and_merge_result"
103- "process_raw_lifs" = " murfey.workflows.clem.process_raw_lifs:zocalo_cluster_request"
104- "process_raw_tiffs" = " murfey.workflows.clem.process_raw_tiffs:zocalo_cluster_request"
105- "register_lif_preprocessing_result" = " murfey.workflows.clem.register_preprocessing_results:register_lif_preprocessing_result"
106- "register_tiff_preprocessing_result" = " murfey.workflows.clem.register_preprocessing_results:register_tiff_preprocessing_result"
105+ "clem.register_lif_preprocessing_result" = " murfey.workflows.clem.register_preprocessing_results:register_lif_preprocessing_result"
106+ "clem.register_tiff_preprocessing_result" = " murfey.workflows.clem.register_preprocessing_results:register_tiff_preprocessing_result"
107107
108108[tool .setuptools ]
109109package-dir = {"" = " src" }
Original file line number Diff line number Diff line change @@ -629,7 +629,9 @@ def process_raw_lifs(
629629 try :
630630 # Try and load relevant Murfey workflow
631631 workflow : EntryPoint = list (
632- entry_points ().select (group = "murfey.workflows" , name = "process_raw_lifs" )
632+ entry_points ().select (
633+ group = "murfey.workflows" , name = "clem.process_raw_lifs"
634+ )
633635 )[0 ]
634636 except IndexError :
635637 raise RuntimeError ("The relevant Murfey workflow was not found" )
@@ -661,7 +663,9 @@ def process_raw_tiffs(
661663 try :
662664 # Try and load relevant Murfey workflow
663665 workflow : EntryPoint = list (
664- entry_points ().select (group = "murfey.workflows" , name = "process_raw_tiffs" )
666+ entry_points ().select (
667+ group = "murfey.workflows" , name = "clem.process_raw_tiffs"
668+ )
665669 )[0 ]
666670 except IndexError :
667671 raise RuntimeError ("The relevant Murfey workflow was not found" )
You can’t perform that action at this time.
0 commit comments