Graceful fallback when motion_correction missing
Browse files- kimodo/postprocess.py +1 -1
kimodo/postprocess.py
CHANGED
|
@@ -321,7 +321,7 @@ def post_process_motion(
|
|
| 321 |
if _env_bool("KIMODO_STRICT_MOTION_CORRECTION", default=False):
|
| 322 |
raise RuntimeError(
|
| 323 |
"Motion correction is required for this postprocessing path but the "
|
| 324 |
-
"motion_correction package is not installed. Install with: pip install
|
| 325 |
) from e
|
| 326 |
|
| 327 |
logger.warning(
|
|
|
|
| 321 |
if _env_bool("KIMODO_STRICT_MOTION_CORRECTION", default=False):
|
| 322 |
raise RuntimeError(
|
| 323 |
"Motion correction is required for this postprocessing path but the "
|
| 324 |
+
"motion_correction package is not installed. Install with: python -m pip install ./MotionCorrection"
|
| 325 |
) from e
|
| 326 |
|
| 327 |
logger.warning(
|