fork_scRNAseq_analysis/pipelines/15_train_classifier/train_classifier.sh
2019-07-08 12:22:01 +01:00

16 lines
220 B
Bash
Executable file

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