view mkCorr.sh @ 4:60bfca1da141

wrong redirect
author Ido Tamir <ido.tamir@imp.ac.at>
date Sun, 18 Aug 2013 17:08:27 +0200
parents 7bdd29cdfed8
children 9abd178b46bd
line wrap: on
line source

#!/bin/sh
TOOLDIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

#echo "running corr"
#echo $PWD

module () {
   eval `/usr/bin/modulecmd bash $*`
}

if [ -f /biosw/modules/init/modules-env.sh ]; then
	module load R/3.0.0 
fi;

cp $TOOLDIR/corr.R $PWD

./corr.R "$@" 2>&1 > err.log

if [ $? -eq 0 ] 
then
   echo 'correlation result'
   exit 0
else
   cat err.log >&2
   exit 1
fi