-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGSscript.sh
More file actions
executable file
·37 lines (31 loc) · 862 Bytes
/
GSscript.sh
File metadata and controls
executable file
·37 lines (31 loc) · 862 Bytes
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
#!/bin/bash
if [ -z $1 ]; then
echo unset input!
exit 0
fi
if [ $1 = "PDF" ]; then
cd /home/diana/workspace/Analysis/R_projects/
for GS in `seq 10 10 60`
do
for seed in `seq 100 110`
do
./gen_pdf_randomized.sh $GS $seed
done
done
fi
cd /home/diana/workspace/Analysis/Information/
if [ -e GSstudy12R.dat ];then rm GSstudy12R.dat;fi
if [ -e GSstudy13R.dat ];then rm GSstudy13R.dat;fi
if [ -e GSstudy23R.dat ];then rm GSstudy23R.dat;fi
for GS in `seq 10 10 60`
do
for seed in `seq 100 110`
do
./CCap "QL196" 12 "pdf_WT-June" $GS $seed > results.dat
cat results.dat >> GSstudy12R.dat
./CCap "QL196" 13 "pdf_WT-June" $GS $seed > results.dat
cat results.dat >> GSstudy13R.dat
./CCap "QL196" 23 "pdf_WT-June" $GS $seed > results.dat
cat results.dat >> GSstudy23R.dat
done
done