Commit | Line | Data |
---|---|---|
1d014a86 BA |
1 | #!/bin/bash |
2 | ||
3 | #PBS -l nodes=1:ppn=16,mem=8gb,pmem=512mb | |
4 | #PBS -j oe | |
5 | ||
6 | #PBS -o .output | |
7 | rm -f .output | |
8 | ||
9 | WORKDIR=/workdir2/auder/morpheus/reports | |
10 | cd $WORKDIR | |
11 | ||
12 | module load R | |
13 | ||
14 | # arg --vanilla maybe possible on cluster | |
15 | R --slave --args N=1000 nc=16 link=logit <timings.R >out 2>&1 |