diff --git a/geci_plot.py b/geci_plot.py index 94cfdfa..4d1980e 100644 --- a/geci_plot.py +++ b/geci_plot.py @@ -6,7 +6,6 @@ import scipy # type: ignore import json import os from jsmin import jsmin # type:ignore -from functions.get_trials import get_trials def func_pow(x, a, b, c): @@ -76,9 +75,6 @@ def plot( print(f"ERROR: could not find raw directory {raw_data_path}!!!!") exit() - trials = get_trials(raw_data_path, experiment).numpy() - assert trials.shape[0] > 0 - with open(f"meta_{config["mouse_identifier"]}_exp{experiment:03d}.json", "r") as file: metadata = json.loads(jsmin(file.read()))