All material (C) 2021-2022 by CSC -IT Center for Science Ltd. This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 Unported License, http://creativecommons.org/licenses/by-sa/4.0/
In nextflow.config file, once can have the following exerpt:
profiles {
standard {
process.executor = ‘local’
}
puhti {
process.clusterOptions = ‘–account=project_xxxx –ntasks-per-node=1 –cpus-per-task=4 –ntasks=1 –time=00:00:05’ process.executor = ‘slurm’ process.queue = ‘small’ process.memory = ‘10GB’
}
}
Usage:
> nextflow run