We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32b6950 commit 653579bCopy full SHA for 653579b
src/spyglass/lfp/analysis/v1/lfp_band.py
@@ -462,10 +462,10 @@ def make(self, key: dict) -> None:
462
}
463
).fetch("valid_times")
464
lfp_band_valid_times = lfp_band_valid_times.censor(new_timestamps)
465
- lfp_valid_times.set_key(**key, pipeline="lfp band")
+ lfp_band_valid_times.set_key(**key, pipeline="lfp band")
466
if len(tmp_valid_times) == 0: # TODO: swap for cautious_insert
467
# add an interval list for the LFP valid times
468
- IntervalList.insert1(lfp_valid_times.as_dict)
+ IntervalList.insert1(lfp_band_valid_times.as_dict)
469
else:
470
# check that the valid times are the same
471
assert np.isclose(
0 commit comments