Skip to content

Commit

Permalink
more sorting warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin committed Dec 13, 2024
1 parent 371b840 commit f1a7170
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ def __init__(self, file_path: FilePath, sampling_frequency: Optional[float] = No
The file path to the ``.nev`` data
sampling_frequency: float, optional
The sampling frequency for the sorting extractor. When the signal data is available (.ncs) those files will be
used to extract the frequency automatically. Otherwise, the sampling frequency needs to be specified for
this extractor to be initialized.
used to extract the frequency automatically. Otherwise, the sampling frequency needs to be specified for
this extractor to be initialized.
verbose : bool, default: True
Enables verbosity
"""
Expand Down
2 changes: 1 addition & 1 deletion tests/test_on_data/ecephys/test_sorting_interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

class TestBlackrockSortingInterface(SortingExtractorInterfaceTestMixin):
data_interface_cls = BlackrockSortingInterface
interface_kwargs = dict(file_path=str(DATA_PATH / "blackrock" / "FileSpec2.3001.nev"))
interface_kwargs = dict(file_path=str(DATA_PATH / "blackrock" / "FileSpec2.3001.nev"), sampling_frequency=30_000.0)

associated_recording_cls = BlackrockRecordingInterface
associated_recording_kwargs = dict(file_path=str(DATA_PATH / "blackrock" / "FileSpec2.3001.ns5"))
Expand Down

0 comments on commit f1a7170

Please sign in to comment.