Skip to content

Commit

Permalink
fix: biowulf has depreceated SLURM_JOBID in favor of SLURM_JOB_ID
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed May 23, 2024
1 parent e828a99 commit 3d6470c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Change the peak widths histogram type from overlay to stack. (#176, @kelly-sovacool)
- Add a workflow entry point to download fastq files from SRA. (#176, @kelly-sovacool)
- Add `test_human` profile with chipseq data from ENCODE. (#176, @kelly-sovacool)
- In biowulf config profile, switch variable $SLURM_JOBID to $SLURM_JOB_ID. (@kelly-sovacool)

## CHAMPAGNE 0.3.0

Expand Down
2 changes: 1 addition & 1 deletion conf/biowulf.config
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ singularity {
env.SINGULARITY_CACHEDIR = "/data/CCBR_Pipeliner/SIFS"

process.clusterOptions = ' --gres=lscratch:200 '
process.scratch = '/lscratch/$SLURM_JOBID'
process.scratch = '/lscratch/$SLURM_JOB_ID'
process.stageInMode = 'symlink'
process.stageOutMode = 'rsync'
// for running pipeline on group sharing data directory, this can avoid inconsistent files timestamps
Expand Down

0 comments on commit 3d6470c

Please sign in to comment.