fork_scRNAseq_analysis/pipelines/22_cell_comparison/cell_comparison.sh
2019-07-08 12:22:01 +01:00

17 lines
231 B
Bash
Executable file

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