Skip to content

Commit

Permalink
Merge branch 'release/2.39.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
mayofaulkner committed Oct 14, 2024
2 parents d15b12c + 42fb8e1 commit c4418cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion brainbox/metrics/single_units.py
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ def quick_unit_metrics(spike_clusters, spike_times, spike_amps, spike_depths,
r.slidingRP_viol_forced[ir] = srp['value_forced']
r.max_confidence[ir] = srp['max_confidence']
r.min_contamination[ir] = srp['min_contamination']
r.n_spikes_below2 = srp['n_spikes_below2']
r.n_spikes_below2[ir] = srp['n_spikes_below2']

# loop over each cluster to compute the rest of the metrics
for ic in np.arange(nclust):
Expand Down
2 changes: 1 addition & 1 deletion ibllib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import logging
import warnings

__version__ = '2.39.0'
__version__ = '2.39.1'
warnings.filterwarnings('always', category=DeprecationWarning, module='ibllib')

# if this becomes a full-blown library we should let the logging configuration to the discretion of the dev
Expand Down
3 changes: 3 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
- Behaviour QC: StimFreeze QC due to indexing errors, ITI duration and negative feedback delay for nogo trials
- Camera QC fixes

#### 2.39.1
- Bugfix: brainbox.metrics.single_unit.quick_unit_metrics fix for indexing of n_spike_below2

## Release Note 2.38.0

### features
Expand Down

0 comments on commit c4418cb

Please sign in to comment.