Skip to content

Commit

Permalink
Fix so epoch key is passed to time function
Browse files Browse the repository at this point in the history
  • Loading branch information
edeno committed Dec 20, 2017
1 parent 1f00a32 commit d51479a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loren_frank_data_processing/neurons.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def get_spike_indicator_dataframe(neuron_key, animals,
---
'''
time = time_function(neuron_key, animals)
time = time_function(neuron_key[:3], animals)
spikes_df = get_spikes_dataframe(neuron_key, animals)
time_index = np.digitize(spikes_df.index.total_seconds(),
time.total_seconds())
Expand Down

0 comments on commit d51479a

Please sign in to comment.