915
edits
Changes
Clarified memory and time
=== Creating a Batch Script ===
To submit a job to the server you will need to create a batch script to submit your jobs. The Armis2 and Greatlakes servers use slurm to submit jobs.
<pre>
#SBATCH --nodes=1
#SBATCH --cpus-per-task=1
#SBATCH --mem-per-cpu=24G2G#SBATCH --time=00:5515:00
#SBATCH --account=<USER>
#SBATCH --partition=standard
echo "Running from $(pwd)"
Rscript -e "rmarkdown::render('<FIRST_SCRIPT>.Rmd')"
Rscript -e "rmarkdown::render('<SECOND_SCRIPT>.Rmd')"
</pre>
Save this as a <JOB_NAME>.slurm file in your working folder on turbo. The <nowiki>mem-per-cpu</nowiki> and <nowiki>time</nowiki> commands should be adjusted to approximate how complex your job is (if it is too little memory or time you will get an update in the email response).
== Transferring Files ==