You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Path to the output Phy folder (containing the params.py).
327
327
unwhiten : bool, default: True
328
328
Unwhiten the templates computed by kilosort.
329
+
gain_to_uV : float | None, default: None
330
+
The gain to apply to convert traces to uV
331
+
offset_to_uV : float | None, default: None
332
+
The offset to apply to the traces
329
333
330
334
Returns
331
335
-------
332
336
sorting_analyzer : SortingAnalyzer
333
337
A SortingAnalyzer object.
334
338
"""
335
339
340
+
ifgain_to_uVisNone:
341
+
warnings.warn(
342
+
"No `gain_to_uv` value given. Outputted data will be in dimensionless units. If you know the conversion factor, please pass it to the `read_kilosort_as_analyzer` function."
343
+
)
344
+
gain_to_uV=1.0
345
+
ifoffset_to_uVisNone:
346
+
warnings.warn(
347
+
"No `offset_to_uV` value given. Outputted data may not be offset correctly. If you know the offset factor, please pass it to the `read_kilosort_as_analyzer` function."
0 commit comments