diff --git a/physiofit/ui/cli.py b/physiofit/ui/cli.py index 84204e7..723e124 100644 --- a/physiofit/ui/cli.py +++ b/physiofit/ui/cli.py @@ -267,10 +267,6 @@ def process(args): # If configuration file is present we launch the optimization experiments = list(data["experiments"].unique()) data = data.set_index("experiments") - for exp in experiments: - logger.info(f"Running optimization for {exp}") - run_data = data.loc[exp, :].sort_values("time").copy() - run(run_data, args, logger, exp) run(data, args, logger, experiments) logger.info("Done!") sys.exit() diff --git a/pyproject.toml b/pyproject.toml index e9e9254..069235a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "physiofit" -version = "3.3.3" +version = "3.3.4" description = "Calculate extracellular fluxes from metabolite concentrations and biomass data" authors = ["llegregam "] license = "GNU General Public License (GPL)"