This repository was archived by the owner on Nov 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy patheditMarkerfiles.m
51 lines (42 loc) · 2.33 KB
/
editMarkerfiles.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
config = hspike_setparams;
old_name = 'Hspike2';
new_name = 'Hspike';
for ipatient = [1, 2]
% backup markerfiles
for ipart = 1 : 1
for idir = 1 : size(config{ipatient}.directorylist{ipart},2)
fname_mrk = fullfile(config{ipatient}.rawdir, config{ipatient}.directorylist{ipart}{idir},'Events.mrk');
% backup markerfile
if ~exist(config{ipatient}.muse.backupdir,'DIR')
error('Backup directory does not exist');
end
[~, d] = fileparts(config{ipatient}.directorylist{ipart}{idir});
if ~exist(fullfile(config{ipatient}.muse.backupdir, d), 'DIR')
fprintf('Creating directory: %s\n', fullfile(config{ipatient}.muse.backupdir, d));
eval(sprintf('!mkdir %s', fullfile(config{ipatient}.muse.backupdir, d)));
end
fname_backup = sprintf('Events_%s.mrk', datestr(now, 'mm-dd-yyyy_HH-MM-SS'));
eval(sprintf('!cp %s %s', fname_mrk, fullfile(config{ipatient}.muse.backupdir, d, fname_backup)));
fprintf('Succesfully backed up markerfile to %s\n',fullfile(config{ipatient}.muse.backupdir, d, fname_backup));
end
end
[MuseStruct_orig] = readMuseMarkers(config{ipatient}, true);
% for ipart = 2 : size(MuseStruct_orig, 2)
ipart = 1;
for idir = 1 : size(MuseStruct_orig{ipart}, 2)
MuseStruct_new{ipart}{idir} = MuseStruct_orig{ipart}{idir};
% rename marker
if isfield(MuseStruct_orig{ipart}{idir}.markers, old_name)
MuseStruct_new{ipart}{idir}.markers.(new_name) = MuseStruct_orig{ipart}{idir}.markers.(old_name);
MuseStruct_new{ipart}{idir}.markers = rmfield(MuseStruct_new{ipart}{idir}.markers, old_name);
end
% % remove marker
% if isfield(MuseStruct_orig{ipart}{idir}.markers,'SpikeDetect')
% MuseStruct_new{ipart}{idir}.markers = rmfield(MuseStruct_new{ipart}{idir}.markers,'SpikeDetect');
% end
% write markers
fname_mrk = fullfile(config{ipatient}.rawdir, MuseStruct_new{ipart}{idir}.directory,'Events.mrk');
writeMuseMarkerfile(MuseStruct_new{ipart}{idir}, fname_mrk);
% end
end
end