Skip to content

Commit 7290fe5

Browse files
authored
Merge pull request #52 from chyumin/add-combinato-test
Added combinato test
2 parents 2422fdd + ea9208e commit 7290fe5

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

tests/test_singularity_containers.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,12 @@ def test_hdsort(run_kwargs):
7575
def test_kilosort1(run_kwargs):
7676
sorting = ss.run_kilosort(output_folder="kilosort", useGPU=False, **run_kwargs)
7777
print(sorting)
78+
79+
80+
def test_combinato(run_kwargs):
81+
rec = run_kwargs['recording']
82+
channels = rec.get_channel_ids()[0:1]
83+
rec_one_channel = rec.channel_slice(channels)
84+
run_kwargs['recording'] = rec_one_channel
85+
sorting = ss.run_combinato(output_folder='combinato', **run_kwargs)
86+
print(sorting)

0 commit comments

Comments
 (0)