Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions conf/nci_gadi.config
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// NCI Gadi nf-core configuration profile
params {
config_profile_description = 'NCI Gadi HPC profile provided by nf-core/configs'
config_profile_contact = 'Georgie Samaha (@georgiesamaha), Matthew Downton (@mattdton)'
config_profile_contact = 'Georgie Samaha (@georgiesamaha), Kisaru Liyanage (@kisarur)'
config_profile_url = 'https://opus.nci.org.au/display/Help/Gadi+User+Guide'
project = System.getenv("PROJECT")
storage = "gdata/${params.project}+scratch/${params.project}"
}

// Enable use of Singularity to run containers
Expand All @@ -25,8 +26,8 @@ executor {
// Define process resource limits
process {
executor = 'pbspro'
project = System.getenv("PROJECT")
storage = 'scratch/params.project'
project = "${params.project}"
storage = "${params.storage}"
module = 'singularity'
cache = 'lenient'
stageInMode = 'symlink'
Expand Down