-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathall.sh
executable file
·52 lines (36 loc) · 917 Bytes
/
all.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
#!/bin/bash
#
# Copyright 2020. Uecker Lab, University Medical Center Goettingen.
#
# Author: Xiaoqing Wang, 2020
#
# Wang X et al.
# Model‐Based Reconstruction for Simultaneous Multi‐Slice T1 Mapping
# using Single‐Shot Inversion‐Recovery Radial FLASH.
# Magn Reson Med. 2020
#
# run all model-based reconstructions
set -e
if [ ! -e $TOOLBOX_PATH/bart ] ; then
echo "\$TOOLBOX_PATH is not set correctly!" >&2
exit 1
fi
export PATH=$TOOLBOX_PATH:$PATH
export BART_COMPAT_VERSION="v0.7.00"
# phantom
./run_ss_phantom.sh
./run_sms3_phantom.sh
# brain
./run_ss_brain.sh $(seq 1 6)
./run_inter3_brain.sh
./run_sms3_gaal_brain.sh
./run_sms3_brain.sh $(seq 1 2)
./run_inter5_brain.sh
./run_sms5_gaal_brain.sh
./run_sms5_brain.sh $(seq 1 6)
# liver
./run_ss_liver.sh $(seq 1 6)
./run_inter3_liver.sh
./run_sms3_gaal_liver.sh
./run_sms3_liver.sh $(seq 1 6)