~ubuntu-branches/ubuntu/utopic/mricron/utopic

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
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>






  
  
  
  
  
  
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">






  
  
  
  
  
  
  <meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">






  
  
  
  
  
  
  <title>MRIcron Statistics Page</title>
</head>


<body bgcolor="#ffffff">






 
<table bgcolor="#000000" border="0" cellpadding="0" cellspacing="0" width="100%">






 <tbody>






    <tr>






 <td bgcolor="#ffffff">
      
      
      
      
      
      
      <table bgcolor="#000050" border="0" width="100%">






 <tbody>






          <tr>






 <td><a href="../index.html"><img src="images/icon.png" border="0" height="86" width="128"></a></td>






 <td width="100%"><font color="#ffffff" size="5">MRIcron Statistical Analysis Tutorial</font></td>






          </tr>






 
        
        
        
        
        
        
        </tbody>
      
      
      
      
      
      
      </table>






 </td>






    </tr>






 
  
  
  
  
  
  
  </tbody>
</table>






 
<table border="0" width="100%">






 <tbody>






    <tr>






 <td width="40">&nbsp;</td>






 <td valign="top" width="100%"><b>Introduction</b>
      
      
      
      
      
      <p><b>Important note: By
default, MRIcron has the lesion drawing tools switched off. To turn on the lesion
drawing features of MRIcron, select Help/Preferences and make sure the "Show drawing menu and tools" checkbox is selected.</b></p>

     <p>MRIcron is designed to relate lesion location to behavioral
performance. For example, it can help identify brain regions that are
crucial to language production. To conduct an analysis, we will need to
conduct four steps:</p>
      <ol>
 <li>Lesion Mapping: For each individual, we need to map the extent of brain injury.</li>
 <li>Specify design: We need to design our experiment, creating a
spreadsheet that links each individual's lesion map to their performance</li>
 <li>Compute results: We need to conduct a voxelwise statistical analysis.</li>
 <li>Viewing results: We need to interpret the results.</li>
      </ol>



This tutorial guides you through a lesion data analysis. <br>

      <ol>
        <li>A copy of <a href="http://www.mricro.com/mricron/">MRIcron</a>: the  version will include a folder named 'example\lesions' with the sample dataset described here.</li> 
        <li>A copy of  <a href="http://www.mricro.com/npm/">NPM for Windows</a></li>
      </ol>
In this tutorial, I assume the lesion maps and design file are in the folder c:\dataset, but you can extract the files
anywhere. Note that by default these are usually installed to c:\program files\mricron\example\lesions. The sample dataset includes simulated lesion maps for 23
patients. This folder also includes .val files that report the
performance
of these patients on a letter cancellation task.&nbsp; In this task,
patients are asked to mark each occurence of the letter 'A' on a piece
of paper that was cluttered with letters. A perfect score on this task
is 60 (when all the A's are detected). The file continuous.val lists
each patient's
performance on this task (a score of 2..60), while the file
binomial.val lists performance on this task as binary: patients missing
more than 4 items are listed as having failed this task (0), while
patients who missed 4 or fewer items are listed as having passed this
task (1). We have included both binomial and continuous values to
illustrate the statistical analyses available with MRIcron.<br>
      <br>
      <table style="text-align: left; background-color: rgb(204, 204, 204); width: 100%;" border="0" cellpadding="2" cellspacing="1">



        <tbody>



          


          <tr>



            <td>Right: A sample lesion map (9.voi) overlayed ontop
of the ch2 template showing injury to the left temporal lobe. To view
this map, launch MRIcron and choose File/Template/Ch2, then choose
Overlay/Add... and choose the image 9.voi included with the sample
dataset. </td>



            <td><img style="width: 181px; height: 217px;" alt="patient 9 lesion" src="images/patient9.jpg"><br>
            </td>



            <td></td>



          </tr>



        
        
        
        </tbody>
      
      
      
      </table>
      
      

      <p><b>Lesion Mapping</b></p>





 
      
      
      
      
      
      <p>MRIcron provides simple tools for drawing a region of brain
injury. However, it is crucial that all of our lesion maps are drawn
with the same image dimensions and orientation. Therefore, we should
either draw all the lesions on a standard template (e.g.
File/OpenTemplates/CH2), or we need to first normalize all the scans so
they are coregistered and then open each scan using File/Open.</p>





      
      
      
      
      
      <ol>





 <li>Launch MRIcron and open your scan (File/Open or File/OpenTemplate)</li>





 <li>Select your drawing tool (these are listed at the bottom of the Draw menu, e.g. the 'Pen' tool).</li>





 <li>Draw your region - for example if you use the 'Autoclose Pen'
tool, simply click and draw the border of the brain injury. To fill in
an enclosed region, simply shift+click in the center of the region. To
erase part of your drawing, hold down the Shift key.</li>





 <li>Repeat step 3 for all slices where a lesion is present (e.g. you
can adjust the X,Y,Z numbers that appear on the top left to select the
desired slice. Note you can also use a mouse scroll-wheel to select
slices.</li>





 <li>When you are done drawing the region of brain injury, choose Draw/SaveVOI to save a copy of the lesion map.</li>





 <li>Repeat steps 1-5 for each individual, save the lesion maps from all the individuals in a single folder.</li>





      
      
      
      
      
      </ol>




      <br>





 
      
      
      
      
      <table style="text-align: left; background-color: rgb(204, 204, 204); width: 100%;" border="0" cellpadding="2" cellspacing="0">




        <tbody>




          <tr>




            <td></td>




            <td><img style="width: 31px; height: 31px;" alt="pen tool" src="images/draw/pen.png"></td>




            <td><img style="width: 31px; height: 31px;" alt="closed pen tool" src="images/draw/closedpen.png"></td>




            <td><img style="width: 31px; height: 31px;" alt="fill tool" src="images/draw/fill.png"></td>




            <td><img style="width: 31px; height: 31px;" alt="circle tool" src="images/draw/circle.png"></td>




            <td><img style="width: 31px; height: 31px;" alt="3D fill tool" src="images/draw/3dfill.png"></td>




          </tr>




          <tr>




            <td style="font-weight: bold;"></td>




            <td style="font-weight: bold; text-decoration: underline;">Pen Tool</td>




            <td style="font-weight: bold; text-decoration: underline;">Closed Pen Tool</td>




            <td style="font-weight: bold; text-decoration: underline;">Fill Tool</td>




            <td style="font-weight: bold; text-decoration: underline;">Circle Tool</td>




            <td style="font-weight: bold; text-decoration: underline;">3D Fill Tool</td>




          </tr>




          <tr>




            <td style="background-color: rgb(255, 255, 255);">Left click</td>




            <td style="background-color: rgb(255, 255, 255);">Draw line</td>




            <td style="background-color: rgb(255, 255, 255);">Draw closed line</td>




            <td style="background-color: rgb(255, 255, 255);">Fill region</td>




            <td style="background-color: rgb(255, 255, 255);">Draw ellipse</td>




            <td style="background-color: rgb(255, 255, 255);"><a href="http://www.mricro.com/3droi.html"> see web page</a></td>




          </tr>




          <tr>




            <td>Shift+ left click</td>




            <td>Erase line</td>




            <td>Erase closed line</td>




            <td>Erase region</td>




            <td>Erase ellipse</td>




            <td></td>




          </tr>




          <tr>




            <td style="background-color: rgb(255, 255, 255);">Ctrl+ left click</td>




            <td style="background-color: rgb(255, 255, 255);">Draw thick line</td>




            <td style="background-color: rgb(255, 255, 255);">Draw thick closed line</td>




            <td style="background-color: rgb(255, 255, 255);"><span style="color: rgb(204, 0, 0);">3D Bubble Fill</span></td>




            <td style="background-color: rgb(255, 255, 255);">Draw rectangle</td>




            <td style="background-color: rgb(255, 255, 255);"></td>




          </tr>




          <tr>




            <td>Ctrl+shift+ left click</td>




            <td>Erase thick line</td>




            <td>Erase thick closed line</td>




            <td><span style="color: rgb(204, 0, 0);">Erase 3D region</span></td>




            <td>Erase rectangle</td>




            <td></td>




          </tr>




          <tr>




            <td style="background-color: rgb(255, 255, 255);">right click</td>




            <td style="background-color: rgb(255, 255, 255);">Fill region</td>




            <td style="background-color: rgb(255, 255, 255);">Fill region</td>




            <td style="background-color: rgb(255, 255, 255);">Fill region</td>




            <td style="background-color: rgb(255, 255, 255);">-</td>




            <td style="background-color: rgb(255, 255, 255);"></td>




          </tr>




          <tr>




            <td>Shift+ right click</td>




            <td>Erase region</td>




            <td>Erase region</td>




            <td>Erase region</td>




            <td>-</td>




            <td></td>




          </tr>




          
          <tr>




            <td style="background-color: rgb(255, 255, 255);">Alt+ left click</td>




            <td style="background-color: rgb(255, 255, 255);">Change view</td>




            <td style="background-color: rgb(255, 255, 255);">Change view</td>




            <td style="background-color: rgb(255, 255, 255);">Change view</td>




            <td style="background-color: rgb(255, 255, 255);">Change view</td>




            <td style="background-color: rgb(255, 255, 255);">Change view</td>




          </tr>



          
        
        
        
        
        </tbody>
      
      
      
      
      </table>



      
      
      





      
      
      
      
      
      <p><span style="font-weight: bold;">Specify the Design</span></p>



Lets famialize ourselves with the dataset we will analyze.
      
      
      
      <ol>



        <li>Launch NPM and open the design window
(VLSM/Design...). A speadsheet will appear. Select File/Open
and view the file continuous.val. Each row shows
the performance of each patient, for example the patient&nbsp;1
identified 2 items, while patient 2 detected 44 items. Note that with
this software higher scores reflect better
performance. If you have binomial data (where performance falls into
two discrete categoris), you should denote the presence of a deficit
with a 0 and healthy performance with a one. Note that the filename
listed in the left column and the performance in the right column
always correspond to the same patient.<br>




          <img style="width: 253px; height: 200px;" alt="Design" src="images/val.gif"><br>
        </li>






 <li>We need to first describe the lesion maps and name the behavioral
performance measures. Select View/Design to bring up the description
window.<br>




          <img style="width: 387px; height:165px;" alt="design" src="images/design.gif">&nbsp;<br>






 
          
          
          
          
          
          
          <ol>






 <li>Predictors: shows the number of behavioral measures - here we are only examining the letter cancelation performance..</li>






 <li>Predictor names: for each predictor, insert an easy to remember name, e.g. 'cancel' for our letter finding task.</li>









 <li>You can select the file names of your lesion maps by
pressing the 'Select Images' button to select the lesion maps from
all your participants. You should select all the images simultaneously,
and all the images should be placed in a single folder (e.g. your
lesion maps might be C:\dataset\1.voi, C:\dataset\2.voi, etc). The lesion
images can be in MRIcron VOI, NIfTI .nii, compressed NIfTI .nii.gz or
Analyze (.hdr/.img) format. If you do select images, make sure the
filenames match the patient performance, as noted in step 1.&nbsp;</li>






 <li>You can also set an a priori minimum lesion density threshold. For
example, setting a value of 10% when you analyze 22 people means that
statistics will only be computed for voxels damaged in more than 2
people. A large number for this threshold can increase your statistical
power, as you will only compute statistics for voxels that are commonly
injured. However, larger values will fail to detect rarely damaged
regions that are reliable predictors of deficit. Note that this value
is based on the total incidence of lesions in a voxel, regardless of
behavioral performance.</li>



          
          
          
          </ol>



        </li>



      
      
      
      </ol>






 
      
      
      
      
      
      
      <p><b>Compute results</b></p>






 
      
      
      
      
      
      
      <p>Next, we we compute our statistical results. You can conduct
some statistics by choosing items in the Draw/Statistics menu of
MRIcron. However, here we describe using some of the new features in
NPM that are not yet available in MRIcron - specifically, NPM can
conduct permutation thresholding and the Brunner and Munzel test. To
conduct these statistics,
you need to download and install npm.exe - this only works on the
Windows operating system.</p>






      
      
      
      
      
      
      <ol>






 <li>First go to the 'Options' menu and set the permutations to <span style="font-weight: bold;">None</span>.
Permutation thresholding can be useful, but it will take at least 1000
times longer than a normal False-Discovery Rate corrected threshold,
and is typically less sensitive. Therfore, for you first glance at your
data, turn this feature off.</li>



        <li>For analyzing the continuous data:</li>



        
        
        
        <ol>



          <li>Go to&nbsp;'Option' menu and click 'Tests' - make sure the 'Brunner Munzel' is checked and the t-test is <span style="font-weight: bold;">unchecked</span>.
Our data is not normally distributed, so we will use a non-parametric
test (using the permuted Brunner Munzel rank order statistic).</li>



          <li>Click the VLSM/BinaryImagesContinuousGroups command. Select the continuous.val file.</li>



        
        
        
        </ol>






 <li>For analyzing the binomial data:</li>



        
        
        
        <ol>



          <li>Click the VLSM/BinaryImagesBinaryGroups command. Select
the binomial.val file. This will use the Liebermeister measure (a more
sensitive binomial test than Chi-Squared or Fisher's Exact test, see Seneta and Phipps, 2001; Phipps, 2003).<br>
 <img style="width: 387px; height: 379px;" alt="Comparison" src="images/lieber.gif">
</li>



        
        
        
        </ol>



        <li>NPM will now compute the requested tests. It will create
overlap images of all your patients (e.g. sum.nii.gz) and a statistical
map (BM.nii.gz for continuous data, L.nii.gz for binomial data).<br>




          <img style="width: 458px; height: 347px;" alt="NPM" src="images/npm.gif"></li>



      
      
      
      </ol>



      
      
      
      <p><b>Viewing results</b></p>






 
      
      
      
      
      
      
      <p>We can open up the statistical maps generated and place them
on top of an anatomical scan. If your lesion maps were aligned to
stereotaxic MNI space, you can open them on top of one of the standard
templates (File/OpenTemplates/ch2). Here is a quick guide:</p>






      
      
      
      
      
      
      <ol>






 <li>Launch MRIcron and choose File/OpenTemplates/ch2bet as our background image</li>






 <li>Choose Overlay/Add and choose the statistical map created in the previous step (e.g. C:\dataset\binL.nii.gz). </li>






 <li>When MRIcron detects a statistical map, it calculates the
p-values
for each test in order to determine the false discover rate (FDR)
threshold - e.g. how much robust signal is present in your data.
MRIcron displays a histogram of the Z-scores. Note in the example
below, most of the data has positive Z scores suggesting a robust
signal (if our data was merely noise, we should see a bell-shaped
distribution with a mean of 0, instead the mean Z score is around 2).<br>






 <img style="width: 367px; height: 240px;" alt="Histogram" src="images/zhistogram.gif"><br>




        </li>






 <li>Next, MRIcron displays the overlay. Note at the bottom of the
screen the software reports the critical values: the p05/p01 values
correspond to uncorrected p&lt;0.05 and p&lt;0.01 values that are very
liberal (these tests will make many false alarms, e.g. here we have
conducted 16082 tests, so p05 should result in many false positives).
The fwe05 and fwe01 values correspond to the Bonferroni-corrected
values: this test is very conservative, and you will often fail to
detect real effects. The FDR05 and FDR01 results reflect the False
Discover Rate - e.g. a FDR05 should show around 20 real activations for
every false positive. Note that when there is very little or no signal,
FDR is as conservative as Bonferroni, but it is adaptive to the actual
signal in your dataset. Note that you can select the image thresholding
and cutoff for your overlay. Note that by default,
my software loads statistical maps with thresholds from FDR05 to FDR01,
unless there is insufficient signal, in which case it uses the
uncorrected 0.05...0.01 values. Also note that the current overlay is
set to appear in a monochromatic red color scheme.<br>






 <img style="width: 470px; height: 232px;" alt="lesion stats" src="images/results.jpg"><br>
The image below shows how changing a threshold can change the
appearance of a statistical overlay. Consider the raw statitical map
shown in the left panel, while the middle panel has been thresholded to
only show voxels with Z-scores greater than 2.5 (with three regions
surviving this threshold), the right panel shows a more conservative
threshold of Z&gt;4.5 - with only a single peak surviving.<br>


          <img style="width: 739px; height: 338px;" alt="Thresholding" src="images/threshold.gif"></li>



        </li>






 <li>We can repeat steps 2..4 to load multiple overlays, to compare
different statistical tests. For example, clicking on the
'tutorialfmri.bat' icon will launch MRIcron and load to overlapping
regions of interest. By using the Overlay/TransparencyOnOtherOverlays
command we can view both of these overlays simultaneously.</li>



      
      
      
      </ol>



      </td>






    </tr>






 
  
  
  
  
  
  
  </tbody>
</table>





<table style="text-align: left; background-color: rgb(0, 0, 80); width: 100%;" border="0" cellpadding="0" cellspacing="0">





  <tbody>





    <tr>





      <td><img style="width: 367px; height: 109px;" alt="logo" src="images/meld.jpg"></td>





    </tr>





  
  
  
  
  
  </tbody>
</table>







</body>
</html>