projects
/
morpheus.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Typo in run_acc.sh
[morpheus.git]
/
reports
/
run_accu_cl.sh
1
#!/bin/bash
2
3
#$ -N morpheus
4
#$ -wd /workdir2/auder/morpheus/reports
5
##$ -m abes
6
##$ -M benjamin@auder.net
7
#$ -pe make 50
8
rm
-f
.output
9
#$ -o .output
10
#$ -j y
11
12
module load R
/
3.6.1
13
14
N
=
100
15
n
=
1
e5
16
nc
=
50
17
18
for
d
in
2 5 10
;
do
19
for
link
in
"logit"
"probit"
;
do
20
R
--slave --args
N
=
$N
n
=
$n
nc
=
$nc
d
=
$d
link
=
$link
<
accuracy.R
>
out_
${n}
_
${link}
_
${d}
2
>&
1
21
done
22
done