Description
Hi all — I was doing some manual digging around to deal with artifacts caused by some custom lighting in our rigs, and I wanted to find the moment in the recording where the artifacts began. I noticed that depending on whether I used recording.time_slice()
or recording.plot_traces
, there are two different behaviors for dealing with the case where t0 != 0 (this is coming from open ephys, so it's often the case that the first timestamp isn't 0 in the recording).
Case 1: the "give me X many seconds into the recording" strategy. This appears to be used by recording.plot_traces
, and I think is a bug.
Case 2: the "give me the data where the timestamps equal this value" strategy. This appears to be used by recording.time_slice
, and I think is the correct way (?).
For example, here is the plot from plot_traces
for the time range (25.5, 26.5): you can see the artifacts start ~halfway through the window.
Now if I run this code to try to show the same thing but with recording.time_slice()
, we instead get a different moment:
tmp_rec = recording_car.time_slice(25.5, 26.5)
t = tmp_rec.get_traces(channel_ids=['CH40'])
plt.figure(figsize=(10,3))
plt.plot(t, lw=0.5)
If we adjust the time slicing to account for the inconsistent behavior, we recover the same moment in the data:
t0 = recording_car.get_times()[0]
tmp_rec = recording_car.time_slice(25.5 + t0, 26.5 + t0) # this will get data from where the timestamp equals 25.5 + t0
t = tmp_rec.get_traces(channel_ids=['CH40'])
plt.figure(figsize=(10,3))
plt.plot(t, lw=0.5)
You can see the behavior in the code. time_slice ultimately relies on this logic (at least in my case, it seems that self.t_start is assigned automatically when reading from OE folders): sample_index = (time_s - self.t_start) * self.sampling_frequency
, which means that, say, if t0 were 10, and the user requested t=20, the code would correctly give the user the data from 10 seconds into the recording.
However the plot/get_traces functions don't appear to do this correction, as seen here and down on L145 below that, and then the helper function just inherits that time range directly.
Hopefully fixing the behavior in plot_traces
is easy enough and won't hurt anyone's workflow — I imagine that may be why the bug still exists :)