0001 function s = get_prime_base_sinfo
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 global SCAN_OFFSET
0017
0018 SCAN_OFFSET = 15;
0019
0020 s = struct('id','','nexams',[],'exam_nums', [], 'cond_order', [], 'series_mappings',[]);
0021
0022 cond_names = {'Block1', 'Block2', 'Block3', 'Block4'};
0023 vols_per_cond = [191 191 191 191];
0024
0025 nsub = 0;
0026
0027
0028
0029
0030
0031 nsub = nsub+1;
0032 s(nsub).id = 'test';
0033 s(nsub).exam_nums = [];
0034 s(nsub).nexams = length(s(nsub).exam_nums);
0035
0036 s(nsub).cond_order = [1 2 3 4];
0037 s(nsub).nvol = vols_per_cond(s(nsub).cond_order);
0038
0039
0040 s(nsub).series_mappings{1} = [{'002'}, {'coplanar'};
0041 {'003'} {'epi_12'}];
0042 s(nsub).series_mappings{2} = [{'002'}, {'coplanar2'};
0043 {'003'} {'epi_34'};
0044 {'004'} {'hires'}];
0045