group.py
UnitSelectionParams
¶
Bases: SpyglassMixin, Manual
Unit selection parameters for sorted spikes
Attributes:
| Name | Type | Description |
|---|---|---|
unit_filter_params_name |
str
|
name of the unit selection parameters |
include_labels |
(List[str], optional)
|
list of labels to include, by default None |
exclude_labels |
(List[str], optional)
|
list of labels to exclude, by default None |
unit_criteria |
(dict, optional)
|
criteria on units table columns the unit must satisfy, by default None.
See |
Source code in src/spyglass/spikesorting/analysis/v1/group.py
SortedSpikesGroup
¶
Bases: SpyglassMixin, Manual
Source code in src/spyglass/spikesorting/analysis/v1/group.py
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 | |
create_group(group_name, nwb_file_name, unit_filter_params_name='all_units', keys=[])
¶
Create a new group of sorted spikes
Source code in src/spyglass/spikesorting/analysis/v1/group.py
filter_units(labels, include_labels, exclude_labels)
staticmethod
¶
Filter units based on labels
labels: list of list of strings list of labels for each unit include_labels: list of strings if provided, only units with any of these labels will be included exclude_labels: list of strings if provided, units with any of these labels will be excluded
Source code in src/spyglass/spikesorting/analysis/v1/group.py
filter_units_by_criteria(units_df, unit_criteria=None, strict=True)
staticmethod
¶
Filter units on arbitrary columns of the units table
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
units_df
|
DataFrame
|
units table of one sorting, one row per unit |
required |
unit_criteria
|
dict
|
column name to {operator: value}, or to a bare value or list of values as shorthand for {"isin": value}. A unit is included only if it satisfies every criterion. Operators are ">", ">=", "<", "<=", "==", "!=", "between" (matches the inclusive [low, high] pair) and "outside" (its exact complement), "isin" and "notin". By default None, which includes every unit. |
None
|
strict
|
bool
|
by default True, raise if a criterion names a column this units
table does not have. If False, skip that criterion with a warning
and apply the rest, which lets every unit of this sorting pass
it. |
True
|
Returns:
| Type | Description |
|---|---|
ndarray
|
boolean mask of shape (n_units,), True for each unit satisfying all criteria |
Raises:
| Type | Description |
|---|---|
ValueError
|
if a criterion holds no operator at all, if an operator is not one of those listed above, if "between" or "outside" is given anything but a [low, high] pair, if any operator but "isin" or "notin" is applied to a column holding a list per unit, or, when strict, if a criterion names a column not in units_df |
Notes
Units missing a value (NaN, or potentially None from an imported units table) fail every criterion on that column, negated ones ("!=", "notin") included: a metric that was never computed is no evidence that the unit is good. "isin" and "notin" also work on columns holding a list per unit (e.g. the curation labels), matching if any item of the list is in the target. An empty list is a value, not a missing one, so a unit carrying no labels passes "notin".
Each sorting in a group has its own units table, and those tables may not share the same columns (e.g. if they were curated differently), so a criterion may apply to only some of them. Passing a criteria column that is not in the units table raises an error. Pass strict=False to skip criteria on missing columns (passing all units for that criterion) with a warning instead of erroring.
Source code in src/spyglass/spikesorting/analysis/v1/group.py
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 | |
fetch_spike_data(key, time_slice=None, return_unit_ids=False)
classmethod
¶
fetch spike times for units in the group
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
dict
|
dictionary containing the group key |
required |
time_slice
|
list of float or slice
|
if provided, filter for spikes occurring in the interval [start, stop], by default None |
None
|
return_unit_ids
|
bool
|
if True, return the unit_ids along with the spike times, by default False. Unit ids defined as a list of dictionaries with keys 'spikesorting_merge_id' and 'unit_number' |
False
|
Returns:
| Type | Description |
|---|---|
list of np.ndarray
|
list of spike times for each unit in the group |
Source code in src/spyglass/spikesorting/analysis/v1/group.py
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 | |
get_spike_indicator(key, time, return_unit_ids=False)
classmethod
¶
Get spike indicator matrix for the group
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
dict
|
key to identify the group |
required |
time
|
ndarray
|
time vector for which to calculate the spike indicator matrix |
required |
return_unit_ids
|
bool
|
if True, return the unit ids along with the spike indicator matrix, by default False. Unit ids defined as a list of dictionaries with keys 'spikesorting_merge_id' and 'unit_number' |
False
|
Returns:
| Type | Description |
|---|---|
ndarray
|
spike indicator matrix with shape (len(time), n_units) |
list of dict, optional
|
if return_unit_ids is True, returns a list of dictionaries with keys 'spikesorting_merge_id' and 'unit_number' for each unit |
Source code in src/spyglass/spikesorting/analysis/v1/group.py
get_firing_rate(key, time, multiunit=False, smoothing_sigma=0.015, return_unit_ids=False)
classmethod
¶
Get time-dependent firing rate for units in the group
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
dict
|
key to identify the group |
required |
time
|
ndarray
|
time vector for which to calculate the firing rate |
required |
multiunit
|
bool
|
if True, return the multiunit firing rate for units in the group, by default False |
False
|
smoothing_sigma
|
float
|
standard deviation of gaussian filter to smooth firing rates in seconds, by default 0.015 |
0.015
|
return_unit_ids
|
bool
|
if True, return the unit ids along with the firing rate, by default False. Unit ids defined as a list of dictionaries with keys 'spikesorting_merge_id' and 'unit_number' |
False
|
Returns:
| Type | Description |
|---|---|
ndarray
|
time-dependent firing rate with shape (len(time), n_units) |
list of dict, optional
|
if return_unit_ids is True, returns a list of dictionaries with keys 'spikesorting_merge_id' and 'unit_number' for each unit |