memory
The memory directive defines how much memory is required by each task execution.
Usage
For example:
process hello {
memory 2.GB
script:
"""
your_command --here
"""
}
Use the following suffixes to specify memory values:
B: BytesKB: KilobytesMB: MegabytesGB: GigabytesTB: Terabytes
See MemoryUnit for more information.