Skip to content

Commit

Permalink
Deploying to gh-pages from @ deae1fe 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-Eagles committed Oct 17, 2023
1 parent c9ddb7c commit 8b17e67
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 21 deletions.
26 changes: 13 additions & 13 deletions articles/slurmjobs.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ pkgdown: 2.0.7
pkgdown_sha: ~
articles:
slurmjobs: slurmjobs.html
last_built: 2023-10-16T17:58Z
last_built: 2023-10-17T19:01Z

6 changes: 3 additions & 3 deletions reference/array_submit.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions reference/array_submit_example_2023-10-17.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/bin/bash
#SBATCH -p shared
#SBATCH --mem-per-cpu=10G
#SBATCH --job-name=array_submit_example_2023-10-17
#SBATCH -c 1
#SBATCH -o logs/array_submit_example_2023-10-17.%a.txt
#SBATCH -e logs/array_submit_example_2023-10-17.%a.txt
#SBATCH --mail-type=ALL
#SBATCH --array=1-100%20

set -e

echo "**** Job starts ****"
date

echo "**** JHPCE info ****"
echo "User: ${USER}"
echo "Job id: ${SLURM_JOB_ID}"
echo "Job name: ${SLURM_JOB_NAME}"
echo "Node name: ${SLURMD_NODENAME}"
echo "Task id: ${SLURM_ARRAY_TASK_ID}"

## Load the R module
module load conda_R/4.3

## List current modules for reproducibility
module list

## Edit with your job command
Rscript -e "options(width = 120); sessioninfo::session_info()"

echo "**** Job ends ****"
date

## This script was made using slurmjobs version 0.99.0
## available from http://research.libd.org/slurmjobs/
2 changes: 1 addition & 1 deletion reference/job_loop.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions reference/job_single.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8b17e67

Please sign in to comment.