Closed iustinaabc closed 2 years ago
Hi Iustina,
it is a known issue and it is fixed in the development version.
Just go to preprocessing/preprocess.m and replace the line 128
ICLabelParams.addETdataParams = p.Results.addETdataParams;
with
if ~isempty(ICLabelParams)
ICLabelParams.addETdataParams = p.Results.addETdataParams;
end
Best, Dawid
Thanks a lot, this did the trick!
Dear Automagic developers,
I'm currently running Automagic from a larger EEG pipeline, where it was integrated as a preprocessing step. I tried turning off the ICA parameters by defining it an empty struct in my parameters file
'ICLabelParams', struct([]),...
however I get the following error log in Matlab:
For more background, p.Results has the following content
Overall it seems as if it's not possible to skip the IC Label step. Do you have any insights on this?
Kind regards, Iustina