Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix electrode selection in Axona raw recording #1520

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

letiziasignorelli
Copy link

I'm proposing this PR to fix #1454

@zm711

Copy link
Contributor

@zm711 zm711 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks pretty good to me. The failing test seems to be a ci issue and not related to this PR so I'll try to figure that out. Let me know what you think about the comments :)

cntr = (itetr * elec_per_tetrode) + ielec
ch_name = f"{itetr + 1}{letters[ielec]}"
cntr = (itetr * elec_per_tetrode) + ielec + first_channel
ch_name = "{}{}".format(itetr + active_tetrode_set[0], letters[ielec])
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
ch_name = "{}{}".format(itetr + active_tetrode_set[0], letters[ielec])
ch_name = f"{itetr + active_tetrode_set[0]}{letters[ielec]}"

we try to keep the codebase on f-strings since they are faster and easier to read :)

@@ -558,6 +557,20 @@ def get_active_tetrode(self):
tetrode_id = int(key.strip("collectMask_"))
active_tetrodes.append(tetrode_id)
return active_tetrodes

def get_active_channels(self):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

public or private? what do you think?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I advice to make things private by default and move away from it when you have a good reason to.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's how I was leaning too. I don't see why the user would run this function.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I agree with making them private

chan = self._get_channel_from_tetrode(tetrode)
active_channels.append(chan)

return np.concatenate(active_channels)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what's the benefit of concat? I need to doublecheck what is chan is it a list of all channels from a tetrode. If that is the case I would call it channels or chans instead so we know it's plural.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, chan is a list of all channels from a tetrode, so I agree to call it channels or chans.

Since I was using this function only for the _get_analogsignal_chunk function and it needed the list of active channels as an array I returned directly active_channels as an array. But we can also do it in _get_analogsignal_chunk and keep this function consistent with get_active_tetrodes and return directly active_channels

@zm711
Copy link
Contributor

zm711 commented Aug 5, 2024

@alejoe91 do you know this datalad error? it only happened for one dataset on the 3.9 python vs the 3.11 python runs. It's completely unrelated to this PR, but if you recognize the issue then I won't spend time digging into it.

@zm711 zm711 added this to the 0.14.0 milestone Aug 5, 2024
@alejoe91
Copy link
Contributor

alejoe91 commented Aug 5, 2024

@zm711 maybe just a random failure, re-triggered to see what happens!

@zm711
Copy link
Contributor

zm711 commented Aug 5, 2024

I tried retriggering once, but yeah let's see if maybe it was just a timing issue.

EDIT; --Yep okay just a random ci failure. cool cool

@h-mayorquin
Copy link
Contributor

Gin data for this? : O

@zm711
Copy link
Contributor

zm711 commented Aug 23, 2024

Gin data for this? : O

You mean you want extra gin data? This was a bug in the original implementation just because we didn't know which channel was which. If you use the current gin data with the spikeinterface extractor you'll see that the channels are just 1-16 or 1-32 rather than being meaningful.

@h-mayorquin
Copy link
Contributor

Thanks. I did not realize we already had the gin data as I came from the neuroconv trail.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Electrode selection in Axona raw recording
4 participants