fork_scRNAseq_analysis/pipelines/08_violin_plots/violin_plots.sh
2019-07-08 12:22:01 +01:00

16 lines
212 B
Bash
Executable file

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