Skip to content
Merged
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
2 changes: 1 addition & 1 deletion LFPAnalysis/lfp_preprocess_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2026,7 +2026,7 @@ def make_epochs(load_path=None, slope=None, offset=None, behav_name=None, behav_
beh_ts = [x for x in beh_ts if ~np.isnan(x)]

# Bin these times into the epoched bins
ev_starts = [x - ev_start_s for x in beh_ts]
ev_starts = [x + ev_start_s for x in beh_ts]
ev_ends = [x + ev_end_s for x in beh_ts]

IED_df = _bin_channelwise_times_into_behav_evs(IED_sec_dict, ev_starts, ev_ends)
Expand Down
Loading