File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2222 CLEMTIFFFile ,
2323)
2424from murfey .util .db import Session as MurfeySession
25- from murfey .util .models import TiffSeriesInfo
25+ from murfey .util .models import TIFFSeriesInfo
2626
2727# Use backport from importlib_metadata for Python <3.10
2828if sys .version_info .major == 3 and sys .version_info .minor < 10 :
@@ -639,7 +639,7 @@ def lif_to_stack(
639639):
640640 # Get command line entry point
641641 murfey_workflows = entry_points ().select (
642- group = "murfey.workflows" , name = "lif_to_stack"
642+ group = "murfey.workflows.clem " , name = "lif_to_stack"
643643 )
644644
645645 # Use entry point if found
@@ -672,11 +672,11 @@ def lif_to_stack(
672672@router .post ("/sessions/{session_id}/tiff_to_stack" )
673673def tiff_to_stack (
674674 session_id : int , # Used by the decorator
675- tiff_info : TiffSeriesInfo ,
675+ tiff_info : TIFFSeriesInfo ,
676676):
677677 # Get command line entry point
678678 murfey_workflows = entry_points ().select (
679- group = "murfey.workflows" , name = "tiff_to_stack"
679+ group = "murfey.workflows.clem " , name = "tiff_to_stack"
680680 )
681681
682682 # Use entry point if found
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ class FractionationParameters(BaseModel):
154154"""
155155
156156
157- class TiffSeriesInfo (BaseModel ):
157+ class TIFFSeriesInfo (BaseModel ):
158158 series_name : str
159159 tiff_files : List [Path ]
160160 series_metadata : Path
You can’t perform that action at this time.
0 commit comments