-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update utils with new functions for preprocessing.
- Loading branch information
1 parent
b22cf04
commit 84d5f79
Showing
2 changed files
with
195 additions
and
3 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,24 @@ | ||
from importlib.metadata import PackageNotFoundError, version | ||
|
||
try: | ||
__version__ = version("swc_epys") | ||
except PackageNotFoundError: | ||
# package is not installed | ||
pass | ||
|
||
from .pipeline.full_pipeline import run_full_pipeline | ||
from .pipeline.preprocess import _preprocess_and_save_all_runs | ||
from .pipeline.sort import run_sorting | ||
from .pipeline.postprocess import run_postprocess | ||
|
||
from .utils.checks import check_environment | ||
from .utils.slurm import run_interactive_slurm | ||
|
||
__all__ = [ | ||
"run_full_pipeline", | ||
"_preprocess_and_save_all_runs", | ||
"run_sorting", | ||
"run_postprocess", | ||
"check_environment", | ||
"run_interactive_slurm", | ||
] |
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