File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/decoding_pipeline/pipelines/data_processing Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -59,10 +59,12 @@ def create_pipeline(**kwargs) -> Pipeline:
59
59
outputs = "center_out_extracted_pkl" ,
60
60
parameters = {"params:patient_id" : "params:patient_id" , "params:gain" : "params:gain" , "params:bci_states" : "params:bci_states" })
61
61
62
+ # return channel_labelling_pipeline + data_extraction_pipeline
63
+
62
64
return pipeline (
63
65
pipe = channel_labelling_pipeline + data_extraction_pipeline ,
64
66
namespace = "data_preprocessing" ,
65
- inputs = set (["center_out_hdf5" , "selected_channels" ]),
66
- outputs = {"prefixed_channels" : "prefixed_channels" , "selected_channels " : "selected_channels " },
67
+ inputs = set (["center_out_hdf5" ]),
68
+ outputs = {"prefixed_channels" : "prefixed_channels" , "center_out_extracted_pkl " : "center_out_extracted_pkl " },
67
69
parameters = {"params:patient_id" : "params:patient_id" , "params:gain" : "params:gain" , "params:bci_states" : "params:bci_states" }
68
70
)
You can’t perform that action at this time.
0 commit comments