From 8ada3ce4308bf60429da26ba38aa79c82da6039e Mon Sep 17 00:00:00 2001 From: David Rotermund Date: Mon, 12 Aug 2024 10:58:27 +0200 Subject: [PATCH] Add files via upload --- geci_plot.py | 4 ---- 1 file changed, 4 deletions(-) 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()))