forked from yiguzhou/zhou_interpolates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_sequential.sh
More file actions
52 lines (30 loc) · 1.4 KB
/
run_sequential.sh
File metadata and controls
52 lines (30 loc) · 1.4 KB
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
# submit run_once.py serially and manually define input data
cd /path/to/project/directory/code/
#:::::::::::::::::Running GRF experiments:::::::::::::::::::::::::::::::::#
source batch_run_config 'grf'
for p in ${percentages[@]}; do
for m in ${maptags[@]}; do
python run_once.py -g 'sphere' -d 'grf' -p ${p} -m ${m} -n 1 -s 'fibonacci'
python run_once.py -g 'sphere' -d 'grf' -p ${p} -m ${m} -n 100 -s 'random'
done
done
#:::::::::::::::Running surface map experiments::::::::::::#
source batch_run_config 'neuromaps'
for p in ${percentages[@]}; do
for m in ${maptags[@]}; do
python run_once.py -g 'reduced-midthickness' -d 'neuromaps' -p ${p} -m ${m} -n 1 -s 'fibonacci'
python run_once.py -g 'reduced-midthickness' -d 'neuromaps' -p ${p} -m ${m} -n 100 -s 'dsk33'
#python run_once.py -g 'reduced-midthickness' -d 'neuromaps' -p ${p} -m ${m} -n 100 -s 'lobes'
done
done
#::::::::::::::Running use case with iEEG alpha::::::::::::::::::#
source batch_run_config 'ieeg'
for m in ${maptags[@]}; do
python run_once.py -g 'left-volume' -d ieeg-${m}-pet -p 100 -m ${m}_zscored_no_outlier -n 1 -s 'all'
done
#::::::::::Running use case with HTR1A::::::::::::::::::::::::::::#
source batch_run_config 'microarray'
for m in ${maptags[@]}; do
python run_once.py -g 'cic-volume' -d 'microarray-pet' -p 100 -m ${m} -n 1 -s 'all'
done