0001 function [varargout] = pa_brainamp_eeg_util(fig, command, parm)
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 if ~exist('fig', 'var') || isempty(fig) || ~ishandle(fig)
0019 error('invalid figure was specified.');
0020 end
0021 if ~exist('command', 'var') || isempty(command)
0022 error('invalid command was specified.');
0023 end
0024
0025
0026
0027
0028
0029
0030 data = guidata(fig);
0031
0032 switch(command)
0033 case 'update_output_fname'
0034 update_output_fname(data.H, data.output_filename);
0035 case 'update_exec_push_status'
0036 update_exec_push_status(data.H);
0037 case 'execute'
0038 exec(data);
0039 case 'reset_parameter'
0040 reset_parameter(data);
0041 end
0042
0043
0044 guidata(fig, data);
0045
0046 function update_output_fname(H, output_filename)
0047
0048
0049
0050
0051
0052
0053 global vbmeg_inst;
0054 define = vbmeg_inst.const;
0055
0056 filename = get(H.brainamp_file_edit, 'String');
0057 [fpath, fname, fext] = vb_get_file_parts(filename);
0058
0059 if ~isempty(output_filename)
0060 fname = output_filename;
0061 end
0062
0063
0064 save_dir = get(H.save_dir_edit, 'String');
0065
0066
0067 eegmatfname = [save_dir filesep fname, define.EEG_EXTENSION];
0068 set(H.eegmat_file_edit, 'String', eegmatfname);
0069
0070
0071 bin_dir = [ '.' filesep, fname '_bin' ];
0072 set(H.binary_dir_edit, 'String', bin_dir);
0073
0074 update_exec_push_status(H);
0075
0076 function update_exec_push_status(H)
0077
0078
0079
0080
0081
0082
0083
0084
0085 if ~isempty(get(H.brainamp_file_edit, 'String')) & ...
0086 ~isempty(get(H.save_dir_edit, 'String')) & ...
0087 ~isempty(get(H.eegmat_file_edit, 'String'))
0088 set(H.exec_push, 'Enable', 'on');
0089 else
0090 set(H.exec_push, 'Enable', 'off');
0091 end
0092
0093 function H = exec(data)
0094
0095
0096
0097
0098
0099
0100 H = data.H;
0101
0102
0103
0104
0105
0106
0107 proj_root = get(H.project_root_edit, 'String');
0108
0109
0110
0111
0112
0113
0114
0115 save_dir = get(H.save_dir_edit, 'String');
0116 binary_dir = get(H.binary_dir_edit, 'String');
0117 eegmat_file = get(H.eegmat_file_edit, 'String');
0118
0119
0120
0121 meg_parm = data.brainamp_eeg_parm;
0122
0123
0124 brainamp_file = get(H.brainamp_file_edit, 'String');
0125 meg_parm.measurement_file = brainamp_file;
0126
0127
0128 pos_file = get(H.position_file_edit, 'String');
0129 meg_parm.pos_file = pos_file;
0130
0131
0132 meg_parm.output_file = eegmat_file;
0133
0134
0135
0136
0137
0138 if exist(pos_file, 'file') == 2
0139 [ch_list_brainamp] = vb_brainamp_get_info(brainamp_file);
0140 [posinfo] = vb_posfile_get_posinfo(pos_file);
0141 ch_list_pos = posinfo.ChannelLabel;
0142
0143 IsOK = vb_dlg_compare_list(ch_list_brainamp, ...
0144 ['Brainamp-file Channel list = ', num2str(length(ch_list_brainamp))], ...
0145 ch_list_pos, ...
0146 ['POS-file Channel list = ', num2str(length(ch_list_pos))], ...
0147 'Is channel list correct?');
0148 if ~IsOK, return; end
0149 end
0150
0151
0152
0153
0154
0155
0156
0157 str = get(H.exec_push, 'String');
0158 set(H.exec_push, 'String', 'Processing...');
0159 pause(0.01);
0160
0161 vb_job_meg(proj_root, meg_parm);
0162
0163 set(H.exec_push, 'String', 'Exec');
0164
0165 function data = reset_parameter(data)
0166
0167
0168
0169
0170
0171
0172 H = data.H;
0173
0174 meg_parm = vb_set_meg_parm_brainamp;
0175 pa_brainamp_eeg_set_parm(H.figure, meg_parm);
0176 data = guidata(H.figure);
0177