-
Notifications
You must be signed in to change notification settings - Fork 1
Added FastAPI endpoint to trigger image alignment and merging job for CLEM workflow and updated function parameters #420
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…of CLEM workflow for a given image series
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #420 +/- ##
==========================================
- Coverage 27.25% 26.37% -0.89%
==========================================
Files 75 75
Lines 10002 10897 +895
Branches 1319 1638 +319
==========================================
+ Hits 2726 2874 +148
- Misses 7186 7910 +724
- Partials 90 113 +23 |
| images: list[Path] | ||
| metadata: Path | ||
| # Optional processing parameters | ||
| crop_to_n_frames: Optional[int] = None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As noted on the cryoemservices PR, these could possibly default to something else rather than None
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do these still apply after our discussion as a group earlier, or are you have to have them as None?
| images: list[Path], | ||
| metadata: Path, | ||
| # Optional processing parameters | ||
| crop_to_n_frames: Optional[int] = None, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As above. Something to consider
…pdated validation checks accordingly
… to both the LIF and TIFF workflows
… to 'processing_params'
Also migrates the Pydantic model associated with the TIFF file processing workflow to the CLEM API page, to keep supporting objects localised.
This PR will need to be deployed alongside this PR due to breaking changes.