Home > fmri > utils > rfchop > get_rfchop_sinfo.m

get_rfchop_sinfo

PURPOSE ^

get_rfchop_sinfo

SYNOPSIS ^

function s = get_rfchop_sinfo

DESCRIPTION ^

 get_rfchop_sinfo

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function s = get_rfchop_sinfo
0002 % get_rfchop_sinfo
0003 
0004 global dataroot 
0005 
0006 dataroot = '/data1/rfchop/';
0007 
0008 s = struct('id','','nexams',[],'exam_nums', [], 'cond_order', [], 'series_mappings',[]);
0009 
0010 cond_names = {'Phantom_RFon', 'Phantom_RFoff', 'Finger_Run1', 'Finger_Run2', 'Finger_Run3', 'Finger_Run4'};
0011 vols_per_cond = [150 150 86 86 86 86];
0012 
0013 nsub = 0;
0014 
0015 nsub = nsub+1;
0016 s(nsub).id = 'RFchoptest';
0017 s(nsub).sub_id = 1;
0018 s(nsub).exam_nums = [2122];
0019 s(nsub).nexams = length(s(nsub).exam_nums);
0020 
0021 s(nsub).cond_order = [1 2];
0022 s(nsub).use_runs = [1 2];
0023 s(nsub).nvol = vols_per_cond(s(nsub).cond_order);
0024 
0025 s(nsub).series_mappings{1} =  [{'002'}, {'epi'}, {1};
0026   {'003'} {'epi'} {2}];
0027 
0028 nsub = nsub+1;
0029 s(nsub).id = '08may02PJ';
0030 s(nsub).sub_id = 2;
0031 s(nsub).exam_nums = [2123];
0032 s(nsub).nexams = length(s(nsub).exam_nums);
0033 
0034 s(nsub).cond_order = [3:6];
0035 s(nsub).use_runs = [1:4];
0036 s(nsub).nvol = vols_per_cond(s(nsub).cond_order);
0037 
0038 s(nsub).series_mappings{1} =  [{'002'}, {'coplanar'}, {[]};
0039   {'003'}, {'epi'}, {1};
0040   {'004'} {'epi'} {2};
0041   {'005'} {'epi'} {3};
0042   {'006'} {'epi'} {4}];

Generated on Wed 20-Sep-2023 04:00:50 by m2html © 2003