Skip to content
Snippets Groups Projects
Verified Commit 92896b97 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

src/nextflow.config: add podman profile

parent bbcd680f
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,27 @@ profiles { ...@@ -35,6 +35,27 @@ profiles {
} }
} }
} }
podman {
podman.enabled = true
process {
errorStrategy = 'finish'
memory = '16GB'
withLabel: big_mem_mono_cpus {
cpus = 1
}
withLabel: big_mem_multi_cpus {
cpus = 4
}
withLabel: small_mem_mono_cpus {
cpus = 1
memory = '2GB'
}
withLabel: small_mem_multi_cpus {
cpus = 4
memory = '2GB'
}
}
}
singularity { singularity {
singularity.enabled = true singularity.enabled = true
singularity.cacheDir = "./bin/" singularity.cacheDir = "./bin/"
......
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