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
No related branches found
No related tags found
1 merge request!30Updates to src/nextflow.config
......@@ -85,39 +85,32 @@ profiles {
}
psmn {
charliecloud.enabled = true
cacheDir = "/Xnfs/abc/charliecloud"
runOptions = "--bind /scratch:/scratch --bind /Xnfs:/Xnfs --bind /home:/home"
readOnlyInputs = true
charliecloud.cacheDir = "/Xnfs/abc/charliecloud"
charliecloud.readOnlyInputs = true
process{
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
maxRetries = 3
executor = "slurm"
queue = "Lake"
withLabel: big_mem_mono_cpus {
executor = "slurm"
cpus = 1
memory = "128GB"
time = "24h"
clusterOptions = "--partition=Lake"
}
withLabel: big_mem_multi_cpus {
executor = "slurm"
cpus = 32
memory = "192GB"
time = "24h"
clusterOptions = "--partition=Lake"
}
withLabel: small_mem_mono_cpus {
executor = "slurm"
cpus = 1
memory = "16GB"
time = "24h"
clusterOptions = "--partition=Lake"
}
withLabel: small_mem_multi_cpus {
executor = "slurm"
cpus = 32
memory = "16GB"
time = "24h"
clusterOptions = "--partition=Lake"
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment