Mercurial > repos > idot > coverage_correlation
view mkCorr.sh @ 1:f106b52086b0
Uploaded
author | idot |
---|---|
date | Sun, 18 Aug 2013 09:42:36 -0400 |
parents | |
children | 7bdd29cdfed8 |
line wrap: on
line source
#!/bin/sh TOOLDIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" #echo "running corr" #echo $PWD 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