-
Notifications
You must be signed in to change notification settings - Fork 272
/
seattlechildrens.config
30 lines (26 loc) · 1.03 KB
/
seattlechildrens.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//Create profiles to easily switch between the different process executors and platforms.
//global parameters
params {
config_profile_description = 'The SCRI (seattle childrens research institute) cluster profile'
config_profile_contact = 'Research Scientific Computing (@RSC-RP)'
config_profile_url = 'https://github.com/RSC-RP'
// SCRI HPC project params
queue = "paidq"
// freeq
project = "${params.project}"
}
profiles {
//For running on an interactive session on cybertron with singularity module loaded
local_singularity {
process.executor = 'local'
singularity.enabled = true
}
//For executing the jobs on the HPC cluster with singularity containers
PBS_singularity {
process.executor = 'pbspro'
process.queue = "${params.queue}"
process.clusterOptions = "-P ${params.project}"
process.beforeScript = 'module load singularity'
singularity.enabled = true
}
}