feat: establish Phase 2 DCE modality architecture and sync frontend UIFeat/phase 2 dce architecture#44
Open
chinmayy777 wants to merge 2 commits intoOSIPI:mainfrom
Open
Conversation
…ors and configure 100MB payload limit for BIDS uploads
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Resolves Phase 2 Modality Expansion (DCE/DSC)
To begin executing Phase 2: New Modalities, the system requires a clean Object-Oriented foundation for Dynamic Contrast-Enhanced (DCE) MRI parsing. Furthermore, while auditing the application, I noticed the Next.js UI was completely out of sync with the backend (missing the DSC button in the UI, and missing the DCE stubs in the backend).
To ensure this merges cleanly without triggering Git conflicts with ongoing
factory.pyandregistry.pyrefactors in other open PRs, this PR introduces a strictly isolated Phase 2 foundation:DSCto theUploadModalityTypeenum and successfully renders all three Phase 2 modality selection buttons (ASL, DSC, DCE) in the Next.js UI.testdscfolder todsc.DCEProcessorandDCEValidatorclasses inheriting from theBaseProcessorfactory pattern, ready to be wired into the registry once the current PR queue clears.Checklist
Before the fix:
The UI only displayed "ASL" and "DCE" buttons, and the backend had a sloppy
testdscfolder with no DCE architecture.After the fix: The UI cleanly displays "ASL", "DSC", and "DCE" buttons, and the backend has properly structured
dsc/anddce/OOP factory classes.