spikeRedetector/DataProvider.py

21 lines
395 B
Python

from DatParser import DatParser
class DataProvider:
def __init__(self, data_path):
self.data_path = data_path
# self.cell = CellData(data_path)
self.parser = DatParser(data_path)
self.thresholds = {}
def get_repros(self):
pass
def get_stim_values(self, repro):
pass
def get_trials(self, repro, stimulus_value):
pass