Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve #544 : refactor RawToNWBBuilder for easier workflow #545

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 27 additions & 13 deletions rec_to_nwb/processing/builder/raw_to_nwb_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,19 +147,20 @@ def build_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True,
"""

self.__preprocess_data()

self.__build_nwb_file(process_mda_valid_time=process_mda_valid_time,
process_mda_invalid_time=process_mda_invalid_time,
process_pos_valid_time=process_pos_valid_time,
process_pos_invalid_time=process_pos_invalid_time)

def __build_nwb_file(self, process_mda_valid_time=True, process_mda_invalid_time=True,
process_pos_valid_time=True, process_pos_invalid_time=True):
logger.info('Building NWB files')
os.makedirs(self.output_path, exist_ok=True)
os.makedirs(self.video_path, exist_ok=True)
for date in self.dates:
nwb_builder = NWBFileBuilder(
data_path=self.data_path,
animal_name=self.animal_name,
date=date,
nwb_metadata=self.nwb_metadata,
output_file=self.output_path + self.animal_name + date + ".nwb",
process_mda=self.extract_mda,
process_dio=self.extract_dio,
process_analog=self.extract_analog,
video_path=self.video_path,
reconfig_header=self.__is_rec_config_valid()
)
logger.info('Date: {}'.format(date))
nwb_builder = self.get_nwb_builder(date)
content = nwb_builder.build()
nwb_builder.write(content)
self.append_to_nwb(
Expand All @@ -170,6 +171,20 @@ def build_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True,
process_pos_invalid_time=process_pos_invalid_time
)

def get_nwb_builder(self, date):
return NWBFileBuilder(
data_path=self.data_path,
animal_name=self.animal_name,
date=date,
nwb_metadata=self.nwb_metadata,
output_file=self.output_path + self.animal_name + date + ".nwb",
process_mda=self.extract_mda,
process_dio=self.extract_dio,
process_analog=self.extract_analog,
video_path=self.video_path,
reconfig_header=self.__is_rec_config_valid()
)

def __preprocess_data(self):
"""process data with rec_to_binaries library"""

Expand Down Expand Up @@ -241,4 +256,3 @@ def cleanup(self):
preprocessing = self.data_path + '/' + self.animal_name + '/preprocessing'
if os.path.exists(preprocessing):
shutil.rmtree(preprocessing)