-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move PSOCT conversion script into modalities
- Loading branch information
1 parent
3401c4c
commit 9bd60d4
Showing
4 changed files
with
25 additions
and
97 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
"""Dark Field microscopy converters.""" | ||
|
||
__all__ = ["cli", "multi_slice", "single_slice"] | ||
|
||
from . import cli, multi_slice, single_slice |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
"""Entry-points for Dark Field microscopy converter.""" | ||
|
||
from cyclopts import App | ||
|
||
from linc_convert.cli import main | ||
|
||
help = "Converters for PS-OCT .mat files" | ||
psoct = App(name="psoct", help=help) | ||
main.command(psoct) |
This file contains 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
This file contains 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