21 lines
418 B
Python
21 lines
418 B
Python
|
|
from parser.CellData import CellData
|
|
from parser.DataParserFactory import DatParser
|
|
|
|
class DataProvider:
|
|
|
|
def __init__(self, data_path):
|
|
self.data_path = data_path
|
|
# self.cell = CellData(data_path)
|
|
self.parser = DatParser(data_path)
|
|
|
|
def get_repros(self):
|
|
pass
|
|
|
|
def get_stim_values(self, repro):
|
|
pass
|
|
|
|
def get_trials(self, repro, stimulus_value):
|
|
pass
|
|
|