fork_scRNAseq_analysis/pipelines/06_add_dr/add_dr.sh
2019-07-08 12:22:01 +01:00

16 lines
200 B
Bash
Executable file

#!/bin/bash
#$ -cwd
#$ -N add_dr
#$ -V
#$ -l h_rt=47:59:59
#$ -l h_vmem=300G
if [ "$#" -ne 1 ]; then
echo "Illegal number of parameters"
exit 1
fi
Rscript add_dr.R $1
echo "End on `date`"