We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The extraction notebooks use try/except to skip instances of no units found.
The notebook:
spyglass/notebooks/py_scripts/40_Extracting_Clusterless_Waveform_Features.py
Lines 176 to 180 in 448fffd
This KeyError is potentially thrown by the process that looks for spike times in the units object:
KeyError
spyglass/src/spyglass/spikesorting/v1/curation.py
Lines 351 to 354 in 448fffd
Instead of using a KeyError to handle this case, we should either handle the null entry (i.e., #849) or raise a more specific error
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The extraction notebooks use try/except to skip instances of no units found.
The notebook:
spyglass/notebooks/py_scripts/40_Extracting_Clusterless_Waveform_Features.py
Lines 176 to 180 in 448fffd
This
KeyError
is potentially thrown by the process that looks for spike times in the units object:spyglass/src/spyglass/spikesorting/v1/curation.py
Lines 351 to 354 in 448fffd
Instead of using a
KeyError
to handle this case, we should either handle the null entry (i.e., #849) or raise a more specific errorThe text was updated successfully, but these errors were encountered: