You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to disable filtering of data during spike detection? I have data already filtered, so filtering it again for spike detection makes no sense :)
The text was updated successfully, but these errors were encountered:
Even if I set the filter from 1 to 15000 in the parameters, the resulting spike waveform is still altered from the ones I had before clusterizing. Is there really no way to disable filtering?
If not, would changing these lines in file klusta/traces/spikedetekt.py:
# Apply the filter.data_f=self.apply_filter(chunk_data)
to
# Apply the filter.ifself._kwargs['disable_filter']: data_f=chunk_dataelse: data_f=self.apply_filter(chunk_data)
would disable the filter? Is there any other place in the code that filters data?
Hello!
Is there a way to disable filtering of data during spike detection? I have data already filtered, so filtering it again for spike detection makes no sense :)
The text was updated successfully, but these errors were encountered: