spikesorting_burst.py
BurstPairParams
¶
Bases: SpyglassMixin
, Lookup
Parameters for burst pair selection
burst_params_name: name of the parameter set params: dictionary of parameters, including: sorter: spike sorter name correl_window_ms: window for cross-correlogram in ms correl_bin_ms: bin size for cross-correlogram in ms correl_method: method for cross-correlogram calculation
Source code in src/spyglass/spikesorting/v0/spikesorting_burst.py
BurstPairSelection
¶
Bases: SpyglassMixin
, Manual
Source code in src/spyglass/spikesorting/v0/spikesorting_burst.py
insert_by_sort_group_ids(nwb_file_name, session_name, curation_id, sort_group_ids=None, sorter='mountainsort4', burst_params_name='default', **kwargs)
¶
Insert BurstPairSelection entries by sort_group_ids
Parameters:
Name | Type | Description | Default |
---|---|---|---|
nwb_file_name
|
str
|
name of the NWB file copy with '_' suffix |
required |
session_name
|
str
|
name of the session, used as CuratedSpikeSorting.sort_interval_name |
required |
sort_group_ids
|
list of int
|
list of sort_group_ids to restrict the selection to. If none, all |
None
|
curation_id
|
int
|
curation_id, default 1 |
required |
sorter
|
str
|
name of the spike sorter, default "mountainsort4" |
'mountainsort4'
|
burst_params_name
|
str
|
name of the BurstPairParams entry, default "default" |
'default'
|
Source code in src/spyglass/spikesorting/v0/spikesorting_burst.py
BurstPair
¶
Bases: SpyglassMixin
, Computed
Source code in src/spyglass/spikesorting/v0/spikesorting_burst.py
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 |
|
get_peak_amps(key)
¶
Get peak amplitudes and timestamps for all units in a DataFrame
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
dict
|
key of CuratedSpikeSorting, including nwb_file_name, sorter, sort_interval_name, sort_group_id |
required |
Returns:
Name | Type | Description |
---|---|---|
peak_amps |
dict
|
dictionary of peak amplitudes for each unit |
peak_timestamps |
dict
|
dictionary of peak timestamps for each unit |
Source code in src/spyglass/spikesorting/v0/spikesorting_burst.py
make(key)
¶
Generate BurstPair metrics for a given key
Source code in src/spyglass/spikesorting/v0/spikesorting_burst.py
plot_peak_over_time(key, to_investigate_pairs, overlap=True, return_fig=False)
¶
Plot peak amplitudes over time for a given key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
dict
|
key of BurstPair |
required |
to_investigate_pairs
|
list of tuples of int
|
pairs of units to investigate |
required |
overlap
|
bool
|
if True, plot units in pair on the same plot |
True
|