annotate mytools/r_wrapper_old.sh @ 9:87eb5c5ddfe9

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