Mercurial > repos > idot > coverage_correlation
view mkCorr.sh @ 3:7bdd29cdfed8
more debug messages
author | Ido Tamir <ido.tamir@imp.ac.at> |
---|---|
date | Sun, 18 Aug 2013 16:56:56 +0200 |
parents | f106b52086b0 |
children | 60bfca1da141 |
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 "$@" > err.log 2>&1 if [ $? -eq 0 ] then echo 'correlation result' exit 0 else cat err.log >&2 exit 1 fi