-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Additional tests and testdata change
- SRTM test data is packed (in rds) - Added several tests
- Loading branch information
Insang Song
committed
Nov 17, 2023
1 parent
5402b1b
commit e30fb81
Showing
7 changed files
with
271 additions
and
113 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
# filesystem remnants | ||
.DS_Store | ||
|
||
# Large datasets for test | ||
/tools/largedata/ | ||
|
||
# Slurm logs | ||
**/*.out | ||
**/*.error | ||
|
||
# Apptainer image file | ||
/containers/**/*.sif |
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,13 @@ | ||
#!/bin/bash | ||
|
||
#SBATCH --job-name=init-rocker | ||
#SBATCH --error=init-rocker.error | ||
#SBATCH [email protected] | ||
#SBATCH --mail-type=END,FAIL | ||
#SBATCH --ntasks=1 | ||
#SBATCH --cpus-per-task=1 | ||
#SBATCH --partition=highmem | ||
|
||
## apptainer | ||
apptainer build /ddn/gs1/home/songi2/images/rocker_base_computation.sif /ddn/gs1/home/songi2/projects/Scalable_GIS/containers/apptainer_rocker | ||
|
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,12 @@ | ||
#!/bin/bash | ||
|
||
#SBATCH --job-name=calc_ | ||
#SBATCH --error=init-rocker.error | ||
#SBATCH [email protected] | ||
#SBATCH --mail-type=END,FAIL | ||
#SBATCH --ntasks=1 | ||
#SBATCH --cpus-per-task=1 | ||
#SBATCH --partition=highmem | ||
|
||
## apptainer | ||
apptainer exec --writable-tmpfs --mount='type=bind,source=/opt,destination=/ddn/gs1/home/songi2/projects/PrestoGP_Pesticides/input' /ddn/gs1/home/songi2/images/rocker_base_computation.sif Rscript /ddn/gs1/home/songi2/projects/PrestoGP_Pesticides/Calc_WBD.r |
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,2 @@ | ||
pkgs = c("igraph", "bigDM", "terra", "mapsf", "tmap", "rlang", "data.table", "tidytable", "dtplyr") | ||
install.packages(pkgs = pkgs) |
Oops, something went wrong.