diff --git a/src/dolphin/workflows/_cli_config.py b/src/dolphin/workflows/_cli_config.py index e7757d0c3..e0673c698 100644 --- a/src/dolphin/workflows/_cli_config.py +++ b/src/dolphin/workflows/_cli_config.py @@ -36,6 +36,7 @@ def create_config( ntiles: tuple[int, int] = (1, 1), downsample_factor: tuple[int, int] = (1, 1), no_unwrap: bool = False, + no_inversion: bool = False, n_parallel_unwrap: int = 1, unwrap_method: UnwrapMethod = UnwrapMethod.SNAPHU, troposphere_files: Optional[list[str]] = None, @@ -102,6 +103,9 @@ def create_config( "n_parallel_jobs": n_parallel_unwrap, "run_unwrap": not no_unwrap, }, + timeseries_options={ + "run_inversion": not no_inversion, + }, correction_options={ "troposphere_files": troposphere_files, "tropo_date_fmt": tropo_date_fmt,