forked from FernandoPalazuelos/Displasias
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfn_makesnaps.sh
executable file
·47 lines (42 loc) · 1.29 KB
/
fn_makesnaps.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
#!/bin/bash
metric=$1
rangemetric=$2
group=$3
mrview exampleSubject/fa.nii \
-tractography.load exampleSubject/streamlines_50_10.tck \
-tractography.tsf_load resultados_aylin/promedio_valores/${metric}_${group}.tsf \
-tractography.tsf_range $rangemetric \
-imagevisible false \
-plane 2 \
-tractography.slab -1 \
-target -2.5,1.95,2.67 \
-fov 8 \
-noannotations \
-capture.folder "snaps/" \
-capture.prefix "${metric}_${group}_${rangemetric}" \
-capture.grab \
-exit
mrview exampleSubject/fa.nii \
-tractography.load exampleSubject/streamlines_50_10.tck \
-tractography.tsf_load resultados_aylin/dcohen/${metric}_abs.tsf \
-tractography.geometry points \
-tractography.thickness 0.35 \
-tractography.tsf_range 0,1 \
-tractography.tsf_colourmap 4 \
-tractography.load exampleSubject/streamlines_50_10.tck \
-tractography.tsf_load resultados_aylin/pvalores/${metric}.tsf \
-tractography.geometry points \
-tractography.thickness 0.5 \
-tractography.tsf_range 0,0.000001 \
-tractography.tsf_thresh -1,0.05 \
-tractography.tsf_colourmap 0 \
-imagevisible false \
-plane 2 \
-tractography.slab -1 \
-target -2.5,1.95,2.67 \
-fov 8 \
-noannotations \
-capture.folder "snaps/" \
-capture.prefix "${metric}_abs-cohen" \
-capture.grab \
-exit