Skip to content
Snippets Groups Projects
Commit ffd43025 authored by Brice Letcher's avatar Brice Letcher
Browse files

Updates to src/nextflow.config

* Restore `charliecloud` prefixes
* Remove `--bind`ing as nextflow takes care of it
* Use `queue` not `clusterOptions` for Lake partition
* Use `slurm` executor always under `process`
parent 9b592f1d
Branches
Tags
1 merge request!30Updates to src/nextflow.config
...@@ -85,39 +85,32 @@ profiles { ...@@ -85,39 +85,32 @@ profiles {
} }
psmn { psmn {
charliecloud.enabled = true charliecloud.enabled = true
cacheDir = "/Xnfs/abc/charliecloud" charliecloud.cacheDir = "/Xnfs/abc/charliecloud"
runOptions = "--bind /scratch:/scratch --bind /Xnfs:/Xnfs --bind /home:/home" charliecloud.readOnlyInputs = true
readOnlyInputs = true
process{ process{
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' } errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
maxRetries = 3 maxRetries = 3
executor = "slurm"
queue = "Lake"
withLabel: big_mem_mono_cpus { withLabel: big_mem_mono_cpus {
executor = "slurm"
cpus = 1 cpus = 1
memory = "128GB" memory = "128GB"
time = "24h" time = "24h"
clusterOptions = "--partition=Lake"
} }
withLabel: big_mem_multi_cpus { withLabel: big_mem_multi_cpus {
executor = "slurm"
cpus = 32 cpus = 32
memory = "192GB" memory = "192GB"
time = "24h" time = "24h"
clusterOptions = "--partition=Lake"
} }
withLabel: small_mem_mono_cpus { withLabel: small_mem_mono_cpus {
executor = "slurm"
cpus = 1 cpus = 1
memory = "16GB" memory = "16GB"
time = "24h" time = "24h"
clusterOptions = "--partition=Lake"
} }
withLabel: small_mem_multi_cpus { withLabel: small_mem_multi_cpus {
executor = "slurm"
cpus = 32 cpus = 32
memory = "16GB" memory = "16GB"
time = "24h" time = "24h"
clusterOptions = "--partition=Lake"
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment