-
Notifications
You must be signed in to change notification settings - Fork 1
/
generate-second-level.sh
executable file
·548 lines (467 loc) · 23.3 KB
/
generate-second-level.sh
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
#!/bin/bash
# ------------------------------------------------------------------ #
# GENERATE-SECOND-LEVEL
# ------------------------------------------------------------------ #
# Generates an SPM batch script for performing group analysis.
# ------------------------------------------------------------------ #
#
# Usage
# -----
#
# $ generate-second-level.sh <subj_results_dir> <group_results_dir>
# <contrast_file> <subjects_file>
#
# Where:
#
# <subj_results_dir> is the name of the folder where the SPM.mat
# file will be placed for each subject (it
# needs to already exist)
# <group_results_dir> is the name of the folder where the group
# analysis and each contrast's SPM.mat file
# will be placed. It will be created (together
# with the appropriate sub-folders) if it does
# not exist.
# <contrast_file> is a file listing all the contrast names and their
# vectors, separated by ":"
# <subjects_file> is the name of a file containining the list of subjects
# and a group identifier for each of them.
#
# Contrast File
# --------------
# A contrast file is a text file that contains contrast names and
# vector values, one per line, in the form <NAME> : <VECTOR>. For
# example:
#
# Words > Pictures : 0 0 -0.5 -0.5 0 0.5 0.5
# Pictures > Words : 0 0 0.5 0.5 0 -0.5 -0.5
# ....
#
# The script assumes that the same contrast vector is used for
# each session, and will use SPM's "Replicate&Scale" option when
# generating the contrasts. In some studies, this is not the case,
# so the script cannot be used.
#
# Subjects File
# -------------
# A subjects file is a text file that contains two columns: the
# list of subjects ID (corresponding to the subjects' data
# folders) and the group they belong to. One group must always
# be specified, even as a placeholder (e.g., '1' or 'x'). If
# two groups are indicated, the script will model all the
# contrasts within each group, as well as all the group
# comparsisons within each contrast. A subject file might
# look like this:
#
# 11011 Bilingual
# 11012 Monolingual
# 11015 Bilingual
# ... ...
#
# ------------------------------------------------------------------ #
# Notes
# -----
#
# The script assumes the data are organized according to the CCDL's
# standard format,i.e.:
#
# 1. The root folder for each experiment EXP is located in
# /fmri/data/<PROJECT>/<EXP>;
#
# 2. The data for each subject is contained in folder that has
# the same name as the subject;
#
# Do not use the script unless all of the above assumptions are true.
# ------------------------------------------------------------------ #
#
# History
# -------
#
# 2018-11-10 : * Adapted to handle *.nii nifti files (new standard
# : in SPM12).
#
# 2014-05-13 : * File created, as a fork of previous script
# : called generate-group-analysis
#
# 2013-07-25 : * Script working and stable.
#
# 2013-07-22 : * File created as generate-group-analysis.
# ------------------------------------------------------------------ #
HLP_MSG="
Usage
-----
$ generate-second-level.sh <subj_results_dir> <group_results_dir>
<contrast_file> <subjects_file>
Where:
<subj_results_dir> is the name of the folder where the SPM.mat
file will be placed for each subject (it
needs to already exist)
<group_results_dir> is the name of the folder where the group
analysis and each contrast's SPM.mat file
will be placed. It will be created (together
with the appropriate sub-folders) if it does
not exist.
<contrast_file> is a file listing all the contrast names and their
vectors, separated by ":"
<subjects_file> is the name of a file containining the list of subjects
and a group identifier for each of them.
Contrast File
--------------
A contrast file is a text file that contains contrast names and
vector values, one per line, in the form <NAME> : <VECTOR>. For
example:
Words > Pictures : 0 0 -0.5 -0.5 0 0.5 0.5
Pictures > Words : 0 0 0.5 0.5 0 -0.5 -0.5
....
The script assumes that the same contrast vector is used for
each session, and will use SPM's 'Replicate&Scale' option when
generating the contrasts. In some studies, this is not the case,
so the script cannot be used.
Subjects File
-------------
A subjects file is a text file that contains two columns: the
list of subjects ID (corresponding to the subjects' data
folders) and the group they belong to. One group must always
be specified, even as a placeholder (e.g., '1' or 'x'). If
two groups are indicated, the script will model all the
contrasts within each group, as well as all the group
comparsisons within each contrast. A subject file might
look like this:
11011 Bilingual
11012 Monolingual
11015 Bilingual
... ...
Notes
-----
The script assumes the data are organized according to the CCDL's
standard format,i.e.:
1. The root folder for each experiment EXP is located in
/fmri/data/<PROJECT>/<EXP>;
2. The data for each subject is contained in folder that has
the same name as the subject;
Do not use the script unless all of the above assumptions are true.
Summary
-------
$ generate-second-level.sh <subj_results_dir> <group_results_dir>
<contrast_file> <subjects_file>
"
## ---------------------------------------------------------------- ##
## GENERAL VARIABLES
## ---------------------------------------------------------------- ##
J=0
DIR=`pwd`
#M="${DIR}/group-analysis.m"
#echo "%% Starting... " > ${M}
L1_RESULTS_FOLDER=$1
L2_RESULTS_FOLDER=$2
CONTRAST_FILE=$3 # Contrast file
GROUP_FILE=$4 # Group file
GMS=1 # 1 = No GMS, 2 = proportional, 3 = ANCOVA
VAR=1 # 0 = Equal variance, 1 = unequal variance
if [ $# -ne 4 ]; then
IFS=''
echo -e $HLP_MSG >&2
unset IFS
exit
fi
#GROUPS=`awk '{print $2}' ${GROUP_FILE} | sort | uniq`
#echo $GROUPS, $GROUP_FILE
if [ ! -d ${DIR}/${L2_RESULTS_FOLDER} ]; then
echo "Warning: Creating '${L2_RESULTS_FOLDER}' folder" >&2
/bin/mkdir ${L2_RESULTS_FOLDER}
fi
# --------------------------------------------------------------------
# Part 1 --- Full analysis with all subjects
# --------------------------------------------------------------------
if [ ! -d ${DIR}/${L2_RESULTS_FOLDER}/all ]; then
echo "Warning: Creating 'all' folder" >&2
cd ${L2_RESULTS_FOLDER}
mkdir all
cd ..
fi
# Reset the contrast counter
C=0
while read contrast; do
# Generates a different subfolder for each contrast
C=$((C+1))
contrast_name=`echo $contrast | cut -f1 -d':'`
contrast_name=`echo ${contrast_name}`
contrast_dir=${contrast_name// /_} # Subtitute spaces with '_'
if [ ! -d ${DIR}/${L2_RESULTS_FOLDER}/all/${contrast_dir} ]; then
echo "Warning: Creating '${contrast_dir}' folder" >&2
cd ${L2_RESULTS_FOLDER}/all
mkdir ${contrast_dir}
cd ../..
fi
J=$((J+1))
echo "matlabbatch{${J}}.spm.stats.factorial_design.dir = {'${DIR}/${L2_RESULTS_FOLDER}/all/${contrast_dir}/'};"
echo "matlabbatch{${J}}.spm.stats.factorial_design.des.t1.scans = {"
while read subject; do
subject_folder=`echo $subject | awk '{print $1}'`
contrast_file=con_`printf "%04d" ${C}`
if [ ! -e ${DIR}/${subject_folder}/do-not-include.txt ]; then
if [ -e ${DIR}/${subject_folder}/${L1_RESULTS_FOLDER}/${contrast_file}.img ]; then
echo "'${DIR}/${subject_folder}/${L1_RESULTS_FOLDER}/${contrast_file}.img,1'"
elif [ -e ${DIR}/${subject_folder}/${L1_RESULTS_FOLDER}/${contrast_file}.nii ]; then
echo "'${DIR}/${subject_folder}/${L1_RESULTS_FOLDER}/${contrast_file}.nii,1'"
else
echo "No contrast file ${contrast_file} for ${subject_folder}: Subject excluded" >&2
fi
else
echo "Excluding subject ${subject_folder} (do-not-include file found)" >&2
fi
done < ${GROUP_FILE}
echo "};"
echo "matlabbatch{${J}}.spm.stats.factorial_design.cov = struct('c', {}, 'cname', {}, 'iCFI', {}, 'iCC', {});"
echo "matlabbatch{${J}}.spm.stats.factorial_design.masking.tm.tm_none = 1;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.masking.im = 1;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.masking.em = {''};"
echo "matlabbatch{${J}}.spm.stats.factorial_design.globalc.g_omit = 1;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.globalm.gmsca.gmsca_no = 1;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.globalm.glonorm = ${GMS};"
# ----------------------------------------------------------------
# Estimate the Group-Level Contrast
# ----------------------------------------------------------------
J=$((J+1))
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1) = cfg_dep;"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tname = 'Select SPM.mat';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tgt_spec{1}(1).name = 'filter';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tgt_spec{1}(1).value = 'mat';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tgt_spec{1}(2).name = 'strtype';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tgt_spec{1}(2).value = 'e';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).sname = 'Factorial design specification: SPM.mat File';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).src_exbranch = substruct('.','val', '{}',{$((J-1))}, '.','val', '{}',{1}, '.','val', '{}',{1});"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).src_output = substruct('.','spmmat');"
echo "matlabbatch{${J}}.spm.stats.fmri_est.method.Classical = 1;"
# ----------------------------------------------------------------
# Create the "Contrast" (A simple '1' vector)
# ----------------------------------------------------------------
J=$((J+1))
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1) = cfg_dep;"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tname = 'Select SPM.mat';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tgt_spec{1}(1).name = 'filter';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tgt_spec{1}(1).value = 'mat';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tgt_spec{1}(2).name = 'strtype';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tgt_spec{1}(2).value = 'e';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).sname = 'Model estimation: SPM.mat File';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).src_exbranch = substruct('.','val', '{}',{$((J-1))}, '.','val', '{}',{1}, '.','val', '{}',{1});"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).src_output = substruct('.','spmmat');"
echo "matlabbatch{${J}}.spm.stats.con.consess{1}.tcon.name = '${contrast_name}';"
echo "matlabbatch{${J}}.spm.stats.con.consess{1}.tcon.convec = 1;"
echo "matlabbatch{${J}}.spm.stats.con.consess{1}.tcon.sessrep = 'none';"
echo "matlabbatch{${J}}.spm.stats.con.delete = 1;"
done < ${CONTRAST_FILE}
# --------------------------------------------------------------------
# Part 2 --- Analysis of the two groups, separately
# --------------------------------------------------------------------
# This part of the analysis is performed IFF there are at least two
# groups in the 'groups' file.
# --------------------------------------------------------------------
# Calculate the number of groups. There should only be two.
# (this is contrieved but I couldn't make it work with the classic
# ${#array[@]} trick...)
N=`awk '{print $2}' ${GROUP_FILE} | sort | uniq | wc | awk '{print $1}'`
if [ $N == 2 ]; then
# If we have at least two groups, we need to create individual
# analysis
for group in `awk '{print $2}' ${GROUP_FILE} | sort | uniq`; do
if [ ! -d ${DIR}/${L2_RESULTS_FOLDER}/${group} ]; then
echo "Creating folder for group '${group}'" >&2
cd ${L2_RESULTS_FOLDER}
mkdir ${group}
cd ..
fi
C=0
while read contrast; do
# Generates a different subfolder for each contrast
C=$((C+1))
contrast_name=`echo $contrast | cut -f1 -d':'`
contrast_name=`echo ${contrast_name}`
contrast_dir=${contrast_name// /_} # Subtitute spaces with '_'
contrast_file=con_`printf "%04d" ${C}`
if [ ! -d ${DIR}/${L2_RESULTS_FOLDER}/${group}/${contrast_dir} ]; then
echo "Warning: Creating '${contrast_dir}' folder" >&2
cd ${L2_RESULTS_FOLDER}/${group}
mkdir ${contrast_dir}
cd ../..
fi
J=$((J+1))
echo "matlabbatch{${J}}.spm.stats.factorial_design.dir = {'${DIR}/${L2_RESULTS_FOLDER}/${group}/${contrast_dir}/'};"
echo "matlabbatch{${J}}.spm.stats.factorial_design.des.t1.scans = {"
for subject in `grep ${group} ${GROUP_FILE} | awk '{print $1}'`; do
#echo " $subject"
if [ ! -e ${DIR}/${subject}/do-not-include.txt ]; then
if [ -e ${DIR}/${subject}/${L1_RESULTS_FOLDER}/${contrast_file}.img ]; then
# This handles Analyze format / SPM5-8
echo "'${DIR}/${subject}/${L1_RESULTS_FOLDER}/${contrast_file}.img,1'"
elif [ -e ${DIR}/${subject}/${L1_RESULTS_FOLDER}/${contrast_file}.nii} ]; then
# This handles Nifti format / SPM12
echo "'${DIR}/${subject}/${L1_RESULTS_FOLDER}/${contrast_file}.nii,1'"
else
echo "No contrast file ${contrast_file} for ${subject}: Subject excluded" >&2
fi
else
echo "Excluding subject ${subject} (do-not-include file found)" >&2
fi
done
echo "};"
echo "matlabbatch{${J}}.spm.stats.factorial_design.cov = struct('c', {}, 'cname', {}, 'iCFI', {}, 'iCC', {});"
echo "matlabbatch{${J}}.spm.stats.factorial_design.masking.tm.tm_none = 1;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.masking.im = 1;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.masking.em = {''};"
echo "matlabbatch{${J}}.spm.stats.factorial_design.globalc.g_omit = 1;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.globalm.gmsca.gmsca_no = 1;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.globalm.glonorm = ${GMS};"
# ----------------------------------------------------------------
# Estimate the Group-Level Contrast
# ----------------------------------------------------------------
J=$((J+1))
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1) = cfg_dep;"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tname = 'Select SPM.mat';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tgt_spec{1}(1).name = 'filter';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tgt_spec{1}(1).value = 'mat';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tgt_spec{1}(2).name = 'strtype';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tgt_spec{1}(2).value = 'e';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).sname = 'Factorial design specification: SPM.mat File';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).src_exbranch = substruct('.','val', '{}',{$((J-1))}, '.','val', '{}',{1}, '.','val', '{}',{1});"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).src_output = substruct('.','spmmat');"
echo "matlabbatch{${J}}.spm.stats.fmri_est.method.Classical = 1;"
# ----------------------------------------------------------------
# Create the "Contrast" (A simple '1' vector)
# ----------------------------------------------------------------
J=$((J+1))
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1) = cfg_dep;"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tname = 'Select SPM.mat';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tgt_spec{1}(1).name = 'filter';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tgt_spec{1}(1).value = 'mat';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tgt_spec{1}(2).name = 'strtype';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tgt_spec{1}(2).value = 'e';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).sname = 'Model estimation: SPM.mat File';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).src_exbranch = substruct('.','val', '{}',{$((J-1))}, '.','val', '{}',{1}, '.','val', '{}',{1});"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).src_output = substruct('.','spmmat');"
echo "matlabbatch{${J}}.spm.stats.con.consess{1}.tcon.name = '${contrast_name}';"
echo "matlabbatch{${J}}.spm.stats.con.consess{1}.tcon.convec = 1;"
echo "matlabbatch{${J}}.spm.stats.con.consess{1}.tcon.sessrep = 'none';"
echo "matlabbatch{${J}}.spm.stats.con.delete = 1;"
done < ${CONTRAST_FILE}
done
fi
## -------------------------------------------------------------------
## PART 3: GROUP COMPARISONS
## -------------------------------------------------------------------
if [ $N == 2 ]; then
if [ ! -d ${DIR}/${L2_RESULTS_FOLDER}/comparisons ]; then
echo "Warning: Creating 'comparisons' directory" >&2
cd ${L2_RESULTS_FOLDER}
mkdir comparisons
cd ..
fi
# Ideally, these two should be identified at the very beginning of the
# file to avoid inconsistencies if the file is rewritten during
# the execution of the script.
group1=`awk '{print $2}' ${GROUP_FILE} | sort | uniq | head -1`
group2=`awk '{print $2}' ${GROUP_FILE} | sort | uniq | tail -1`
# Reset contrast counter
C=0
while read contrast; do
# Generates a different subfolder for each contrast
C=$((C+1))
contrast_name=`echo $contrast | cut -f1 -d':'`
contrast_name=`echo ${contrast_name}`
contrast_dir=${contrast_name// /_} # Subtitute spaces with '_'
contrast_file=con_`printf "%04d" ${C}`
if [ ! -d ${DIR}/${L2_RESULTS_FOLDER}/comparisons/${contrast_dir} ]; then
echo "Warning: Creating '${contrast_dir}' folder" >&2
cd ${L2_RESULTS_FOLDER}/comparisons
mkdir ${contrast_dir}
cd ../..
fi
J=$((J+1))
echo "matlabbatch{${J}}.spm.stats.factorial_design.dir = {'${DIR}/${L2_RESULTS_FOLDER}/comparisons/${contrast_dir}'};"
# ------------------------------------------------------------
# Group 1
# ------------------------------------------------------------
echo "matlabbatch{${J}}.spm.stats.factorial_design.des.t2.scans1 = {"
for subject in `grep ${group1} ${GROUP_FILE} | awk '{print $1}'`; do
if [ ! -e ${DIR}/${subject}/do-not-include.txt ]; then
if [ -e ${DIR}/${subject}/${L1_RESULTS_FOLDER}/${contrast_file}.img ]; then
echo "'${DIR}/${subject}/${L1_RESULTS_FOLDER}/${contrast_file}.img,1'"
elif [ -e ${DIR}/${subject}/${L1_RESULTS_FOLDER}/${contrast_file}.nii ]; then
echo "'${DIR}/${subject}/${L1_RESULTS_FOLDER}/${contrast_file}.nii,1'"
else
echo "No contrast file ${contrast_file} for ${subject}: Subject excluded" >&2
fi
else
echo "Excluding subject ${subject} (do-not-include file found)"
fi
done
echo "};"
# ------------------------------------------------------------
# Group 2
# ------------------------------------------------------------
echo "matlabbatch{${J}}.spm.stats.factorial_design.des.t2.scans2 = {"
for subject in `grep ${group2} ${GROUP_FILE} | awk '{print $1}'`; do
if [ ! -e ${DIR}/${subject}/do-not-include.txt ]; then
if [ -e ${DIR}/${subject}/${L1_RESULTS_FOLDER}/${contrast_file}.img ]; then
echo "'${DIR}/${subject}/${L1_RESULTS_FOLDER}/${contrast_file}.img,1'"
elif [ -e ${DIR}/${subject}/${L1_RESULTS_FOLDER}/${contrast_file}.nii ]; then
echo "'${DIR}/${subject}/${L1_RESULTS_FOLDER}/${contrast_file}.nii,1'"
else
echo "No contrast file ${contrast_file} for ${subject}: Subject excluded" >&2
fi
else
echo "Excluding subject ${subject} (do-not-include file found)" >&2
fi
done
echo "};"
echo "matlabbatch{${J}}.spm.stats.factorial_design.des.t2.dept = 0;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.des.t2.variance = ${VAR};"
echo "matlabbatch{${J}}.spm.stats.factorial_design.des.t2.gmsca = 0;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.des.t2.ancova = 0;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.cov = struct('c', {}, 'cname', {}, 'iCFI', {}, 'iCC', {});"
echo "matlabbatch{${J}}.spm.stats.factorial_design.masking.tm.tm_none = 1;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.masking.im = 1;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.masking.em = {''};"
echo "matlabbatch{${J}}.spm.stats.factorial_design.globalc.g_omit = 1;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.globalm.gmsca.gmsca_no = 1;"
echo "matlabbatch{${J}}.spm.stats.factorial_design.globalm.glonorm = ${GMS};"
J=$((J+1))
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1) = cfg_dep;"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tname = 'Select SPM.mat';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tgt_spec{1}(1).name = 'filter';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tgt_spec{1}(1).value = 'mat';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tgt_spec{1}(2).name = 'strtype';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).tgt_spec{1}(2).value = 'e';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).sname = 'Factorial design specification: SPM.mat File';"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).src_exbranch = substruct('.','val', '{}',{$((J-1))}, '.','val', '{}',{1}, '.','val', '{}',{1});"
echo "matlabbatch{${J}}.spm.stats.fmri_est.spmmat(1).src_output = substruct('.','spmmat');"
echo "matlabbatch{${J}}.spm.stats.fmri_est.method.Classical = 1;"
J=$((J+1))
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1) = cfg_dep;"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tname = 'Select SPM.mat';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tgt_spec{1}(1).name = 'filter';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tgt_spec{1}(1).value = 'mat';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tgt_spec{1}(2).name = 'strtype';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).tgt_spec{1}(2).value = 'e';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).sname = 'Model estimation: SPM.mat File';"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).src_exbranch = substruct('.','val', '{}',{$((J-1))}, '.','val', '{}',{1}, '.','val', '{}',{1});"
echo "matlabbatch{${J}}.spm.stats.con.spmmat(1).src_output = substruct('.','spmmat');"
echo "matlabbatch{${J}}.spm.stats.con.consess{1}.tcon.name = '${group1} > ${group2}';"
echo "matlabbatch{${J}}.spm.stats.con.consess{1}.tcon.convec = [1 -1];"
echo "matlabbatch{${J}}.spm.stats.con.consess{1}.tcon.sessrep = 'none';"
echo "matlabbatch{${J}}.spm.stats.con.consess{2}.tcon.name = '${group2} > ${group1}';"
echo "matlabbatch{${J}}.spm.stats.con.consess{2}.tcon.convec = [-1 1];"
echo "matlabbatch{${J}}.spm.stats.con.consess{2}.tcon.sessrep = 'none';"
echo "matlabbatch{${J}}.spm.stats.con.delete = 0;"
done < ${CONTRAST_FILE}
fi
if [ $N != 2 ]; then
# If there were more than two groups, then we have only two options:
# Either we don't have between-group designs (in which case, we exit)
# or we have more than two groups (in which case, right now, we
# cannot really do much)
if [ $N == 1 ]; then
echo "Only one group found: No group comparisons will be generated" >&2
else
echo "Three or more groups found. Cannot do analysis (${GROUPS})." >&2
fi
fi