-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle_sample_new.sh
More file actions
34 lines (22 loc) · 841 Bytes
/
Copy pathsingle_sample_new.sh
File metadata and controls
34 lines (22 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash -l
# declare the name for this job
#SBATCH --job-name=RUNTIME
# Distributing jobs across 5 nodes with 20 cores each node
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=1
#SBATCH --cpus-per-task=10
# Requesting 4000 MB of RAM
#SBATCH --mem-per-cpu=4000
# request 60 hours of wall time
#SBATCH --time=60:00:00
# Dispatching job to standard partitions on discovery
#SBATCH --partition=standard
# specify your email address and when things are emailed
#SBATCH --mail-user=Quang.P.Nguyen.GR@dartmouth.edu
#SBATCH --mail-type=END,FAIL
# By default, SLURM scripts execute in your home directory, not the
# directory from which they were submitted.
cd $SLURM_SUBMIT_DIR
# Run run.R as a script to start the targets pipeline
conda activate cbea
Rscript run_new.R --ncores 10 --analysis "runtime" --remove FALSE --parallel TRUE