-
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.
- Loading branch information
Kevin Esoh
committed
Jul 14, 2024
1 parent
a66358e
commit 7d8ee38
Showing
3 changed files
with
31 additions
and
16 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
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,8 +1,18 @@ | ||
params { // one-time system configuration // | ||
|
||
account = 'NULL' | ||
queue = 'NULL' | ||
containers_dir = 'NULL' | ||
email = 'NULL' | ||
study_title = 'NULL' | ||
|
||
/************************************************************************************************ | ||
~ account: If using SLURM or PBSPRO, provide your cluster project or account name. | ||
~ queue: If using SLURM or PBSPRO, specify the queue or partition name. | ||
~ containers_dir: If using singularity containers, provide a path where the images will be stored. | ||
NB: The path should have sufficient storage capacity. | ||
~ email: If you wish to receive information on job status. | ||
~ study_title: The name of your study/project. | ||
/***********************************************************************************************/ | ||
|
||
params { // one time system configuration | ||
account = "humgen" // if using SLURM or PBSPRO, provide your cluster project or account name | ||
queue = "sadacc-long" // if using SLURM or PBSPRO, specify the queue or partition name | ||
njobs = 10 // number of jobs to submit at once each time | ||
containers_dir = "/scratch/eshkev001/containers/" // if using singularity containers, provide a path where the images will be stored. NB: The path should have sufficient storage capacity | ||
email = 'NULL' | ||
} |