Files
ma/nextflow/tests/checks/profiles.nf/.expected_profile_all.txt
2026-04-29 23:01:54 +02:00

18 lines
231 B
Plaintext

outputDir = 'results'
profiles {
standard {
process {
cpus = 2
memory = '2GB'
}
}
advanced {
process {
cpus = 8
memory = '10GB'
disk = '300GB'
}
}
}