fork_scRNAseq_analysis/pipelines/20_wordclouds/wordclouds.sh
2019-07-08 12:22:01 +01:00

16 lines
208 B
Bash
Executable file

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