@@ -60,49 +60,49 @@ def run_kwargs(work_dir):
6060def test_spykingcircus (run_kwargs ):
6161 if DOCKER_SINGULARITY == "singularity" :
6262 clean_singularity_cache ()
63- sorting = ss .run_sorter ("spykingcircus" , output_folder = "spykingcircus" , ** run_kwargs )
63+ sorting = ss .run_sorter ("spykingcircus" , folder = "spykingcircus" , ** run_kwargs )
6464 print (sorting )
6565
6666
6767def test_mountainsort4 (run_kwargs ):
6868 if DOCKER_SINGULARITY == "singularity" :
6969 clean_singularity_cache ()
70- sorting = ss .run_sorter ("mountainsort4" , output_folder = "mountainsort4" , ** run_kwargs )
70+ sorting = ss .run_sorter ("mountainsort4" , folder = "mountainsort4" , ** run_kwargs )
7171 print (sorting )
7272
7373
7474def test_tridesclous (run_kwargs ):
7575 if DOCKER_SINGULARITY == "singularity" :
7676 clean_singularity_cache ()
77- sorting = ss .run_sorter ("tridesclous" , output_folder = "tridesclous" , ** run_kwargs )
77+ sorting = ss .run_sorter ("tridesclous" , folder = "tridesclous" , ** run_kwargs )
7878 print (sorting )
7979
8080
8181def test_ironclust (run_kwargs ):
8282 if DOCKER_SINGULARITY == "singularity" :
8383 clean_singularity_cache ()
84- sorting = ss .run_sorter ("ironclust" , output_folder = "ironclust" , fGpu = False , ** run_kwargs )
84+ sorting = ss .run_sorter ("ironclust" , folder = "ironclust" , fGpu = False , ** run_kwargs )
8585 print (sorting )
8686
8787
8888def test_waveclus (run_kwargs ):
8989 if DOCKER_SINGULARITY == "singularity" :
9090 clean_singularity_cache ()
91- sorting = ss .run_sorter ("waveclus" , output_folder = "waveclus" , ** run_kwargs )
91+ sorting = ss .run_sorter ("waveclus" , folder = "waveclus" , ** run_kwargs )
9292 print (sorting )
9393
9494
9595def test_hdsort (run_kwargs ):
9696 if DOCKER_SINGULARITY == "singularity" :
9797 clean_singularity_cache ()
98- sorting = ss .run_sorter ("hdsort" , output_folder = "hdsort" , ** run_kwargs )
98+ sorting = ss .run_sorter ("hdsort" , folder = "hdsort" , ** run_kwargs )
9999 print (sorting )
100100
101101
102102def test_kilosort1 (run_kwargs ):
103103 if DOCKER_SINGULARITY == "singularity" :
104104 clean_singularity_cache ()
105- sorting = ss .run_sorter ("kilosort" , output_folder = "kilosort" , useGPU = False , ** run_kwargs )
105+ sorting = ss .run_sorter ("kilosort" , folder = "kilosort" , useGPU = False , ** run_kwargs )
106106 print (sorting )
107107
108108def test_combinato (run_kwargs ):
@@ -112,7 +112,7 @@ def test_combinato(run_kwargs):
112112 channels = rec .get_channel_ids ()[0 :1 ]
113113 rec_one_channel = rec .channel_slice (channels )
114114 run_kwargs ['recording' ] = rec_one_channel
115- sorting = ss .run_sorter ("combinato" , output_folder = 'combinato' , ** run_kwargs )
115+ sorting = ss .run_sorter ("combinato" , folder = 'combinato' , ** run_kwargs )
116116 print (sorting )
117117
118118@pytest .mark .skip (reason = "Legcay sorter: requires Python=3.7" )
@@ -122,7 +122,7 @@ def test_klusta(run_kwargs):
122122 recording = run_kwargs ["recording" ]
123123 recording .extra_requirements .append ("pandas" )
124124 run_kwargs ["recording" ] = recording
125- sorting = ss .run_sorter ("klusta" , output_folder = "klusta" , ** run_kwargs )
125+ sorting = ss .run_sorter ("klusta" , folder = "klusta" , ** run_kwargs )
126126 print (sorting )
127127
128128if __name__ == "__main__" :
0 commit comments