[Eeglablist] Issue with the new eeglab redraw
Ugo Bruzadin Nunes
ugobruzadin at gmail.com
Tue Jan 7 15:57:05 PST 2025
Hello,
I've been using pop_saveset in my various automated pipelines for a long time now. However, when I perform pop_saveset, for some reason, eeglab no longer loads the new saved file. Instead it gives me a new pop_up to "save" the old data and the new data with pop_newset being called in line 1515 in eeglab.m. This didn't used to be a problem before. How can I automatically "save" a file with a new name and "load" the new saved file into eeglab bypassing this pop-up screen? I can comment that line, but I imagine there is a better way to solve this issue.
Here's an example:
When I run this command below on a button (or eval), even though I just saved the file, eeglab redraw stills calls pop_newset popup.
commandReject = [
'mybadcomps = find(EEG.reject.gcompreject);'...
'if ~isempty(mybadcomps);'...
'[EEG,com] = pop_subcomp(EEG, mybadcomps, 0);'...
'suffix = get(findobj(gcf,''tag'',''SaveNowText''),''string'');'...
'[EEG,com] = pop_saveset(EEG, ''filename'', [strcat( EEG.filename(1:end-4),suffix,''.set'')],''filepath'',EEG.filepath,''savemode'',''onefile'');'...
'EEG = eegh(com, EEG);'...
'end;'...
'close(gcf);'...
'eeglab redraw;'];
savetest = uicontrol(gcf, 'Style', 'edit', 'string', 'New', 'Units','Normalized', 'Tag','SaveNowText','Position',[65 -10 15 6].*s+q);
How do I properly save and keep working on the new file without having to actually load the new file in? The file is already in eeglab, the data is stored in eeglab, do I have to reload this newly saved file? I feel that I am missing something. Any direction would be helpful!
Thanks in advance!
Ugo Bruzadin Nunes, PhD
PostDoctoral Fellow, Brain Institute
Chapman University - Orange, CA
More information about the eeglablist
mailing list