Skip to content

Commit

Permalink
Changelog and improve description
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin committed Jan 14, 2025
1 parent fb03fbc commit 676dfdc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ Small fixes should be here.
* Temporary set a ceiling for hdmf to avoid a chunking bug [PR #1175](https://github.com/catalystneuro/neuroconv/pull/1175)

## Features
* Add description to inter-sample-shift for `SpikeGLX` [PR #1177](https://github.com/catalystneuro/neuroconv/pull/1177)

## Improvements
* Improve the naming of ElectrodeGroups in `SpikeGLX` when multi probes are present [PR #1177](https://github.com/catalystneuro/neuroconv/pull/1177)


# v0.6.6 (December 20, 2024)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,13 @@ def get_metadata(self) -> dict:
dict(name="group_name", description="Name of the ElectrodeGroup this electrode is a part of."),
dict(name="contact_shapes", description="The shape of the electrode"),
dict(name="contact_ids", description="The id of the contact on the electrode"),
dict(name="inter_sample_shift", description="The inter-sample shift of the electrode"),
dict(
name="inter_sample_shift",
description=(
"Array of relative phase shifts for each channel, with values ranging from 0 to 1, "
"representing the fractional delay within the sampling period due to sequential ADC."
),
),
]

if self.recording_extractor.get_probe().get_shank_count() > 1:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
},
{
"name": "inter_sample_shift",
"description": "The inter-sample shift of the electrode"
"description": "Array of relative phase shifts for each channel, with values ranging from 0 to 1, representing the fractional delay within the sampling period due to sequential ADC."
}
],
"ElectricalSeriesAPImec1": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
{
"name": "inter_sample_shift",
"description": "The inter-sample shift of the electrode"
"description": "Array of relative phase shifts for each channel, with values ranging from 0 to 1, representing the fractional delay within the sampling period due to sequential ADC."
}
],
"ElectricalSeriesLF": {
Expand Down

0 comments on commit 676dfdc

Please sign in to comment.