-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- upstream amadeus function was fixed - library argument is populated with dev library locations
- Loading branch information
1 parent
cc06cc2
commit c230aa0
Showing
2 changed files
with
30 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
DEBUG_TARGET=$1 | ||
|
||
#SBATCH --job-name=beethoven | ||
#SBATCH --mail-user=manwareme@nih.gov | ||
#SBATCH --mail-type=END,FAIL | ||
#SBATCH --partition=geo | ||
#SBATCH --ntasks=1 | ||
#SBATCH --mem=100G | ||
#SBATCH --cpus-per-task=50 | ||
#SBATCH --error=/ddn/gs1/home/manwareme/beethoven/beethoven/slurm/beethoven_%j.err | ||
#SBATCH --output=/ddn/gs1/home/manwareme/beethoven/beethoven/slurm/beethoven_%j.out | ||
|
||
# run pipeline in the container | ||
apptainer exec \ | ||
--bind $PWD:/mnt \ | ||
--bind $PWD/inst:/inst \ | ||
--bind /ddn:/input \ | ||
--bind $PWD/_targets:/opt/_targets \ | ||
beethoven_dl_calc.sif \ | ||
Rscript --no-init-file -e "targets::tar_invalidate('$DEBUG_TARGET')" | ||
|
||
# run interactive R session in the container | ||
# apptainer exec --bind $PWD/inst:/inst --bind /ddn/gs1/group/set/Projects/NRT-AP-Model/input:/input --bind $PWD:/mnt beethoven_dl_calc.sif R |