annotate tools/mytools/r_wrapper_old.sh @ 0:9071e359b9a3

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:37:19 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 #!/bin/sh
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 ### Run R providing the R script in $1 as standard input and passing
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 ### the remaining arguments on the command line
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 # Function that writes a message to stderr and exits
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 function fail
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 {
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 echo "$@" >&2
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 exit 1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 }
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 # Ensure R executable is found
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 which R > /dev/null || fail "'R' is required by this tool but was not found on path"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 # Extract first argument
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 infile=$1; shift
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 # Ensure the file exists
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 test -f $infile || fail "R input file '$infile' does not exist"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 # Invoke R passing file named by first argument to stdin
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 R --vanilla $* < $infile