Skip to content

Commit

Permalink
Update Preparing-the-Executor.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyue1214 authored Oct 31, 2024
1 parent fd51aa9 commit b793b6b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/Tutorials/Preparing-the-Executor.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Nextflow supports running pipelines on a variety of execution environments, incl
To configure the pipeline to run with the LSF executor, update the `process.executor` as shown below:

```groovy title="config/executor.config"
cluster {
process.executor = 'lsf'
process.memory = '28GB'
process.time = '2d'
}
process{
executor = 'slurm'
memory = '28GB'
time = '2d'
}
```
For running the pipeline with other supported executors such as `PBS`, `k8s`, `AWS Batch`,`Google Cloud Batch` that Nextflow currently supports, please refer to the [Nextflow documentation](https://www.nextflow.io/docs/latest/executor.html#lsf) for detailed instructions on configuring the desired execution environment.

Expand Down

0 comments on commit b793b6b

Please sign in to comment.