Skip to content

Commit

Permalink
Remove electrical series from processed data (I changed this accident…
Browse files Browse the repository at this point in the history
…ally a few commits ago, now changing back).
  • Loading branch information
Nicholas Watters authored and Nicholas Watters committed Dec 24, 2023
1 parent ddb443a commit 9952e12
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/jazayeri_lab_to_nwb/watters/main_convert_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,12 @@ def _add_spikeglx_data(
processed_source_data["LF"] = dict(file_path=lfp_file)
raw_conversion_options["RecordingNP"] = dict(stub_test=stub_test)
raw_conversion_options["LF"] = dict(stub_test=stub_test)
processed_conversion_options["RecordingNP"] = dict(stub_test=stub_test)
processed_conversion_options["LF"] = dict(stub_test=stub_test)
processed_conversion_options["RecordingNP"] = dict(
stub_test=stub_test, write_electrical_series=False
)
processed_conversion_options["LF"] = dict(
stub_test=stub_test, write_electrical_series=False
)

# Processed data
sorting_path = session_paths.spike_sorting_raw / "np_0" / "ks_3_output_v2"
Expand Down

0 comments on commit 9952e12

Please sign in to comment.