mirror of
https://github.com/haniffalab/scRNA-seq_analysis.git
synced 2024-10-23 08:29:24 -07:00
16 lines
No EOL
213 B
Bash
Executable file
16 lines
No EOL
213 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#$ -cwd
|
|
#$ -N gene_grouping
|
|
#$ -V
|
|
#$ -l h_rt=23:59:59
|
|
#$ -l h_vmem=100G
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
echo "Illegal number of parameters"
|
|
exit 1
|
|
fi
|
|
|
|
Rscript gene_grouping.R $1
|
|
|
|
echo "End on `date`" |