Skip to content

Commit 8bee9cf

Browse files
authored
Merge pull request #44 from Pioneer-Research-Labs/add-local-no-docker-config
Add local no-docker config for running pipeline without containers
2 parents 2d1cb23 + deb289d commit 8bee9cf

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,11 @@ nextflow pull Pioneer-Research-Labs/long-read-qc
9292
```bash
9393
nextflow run Pioneer-Research-Labs/long-read-qc --samplesheet samples.csv
9494
```
95+
- Run without Docker using your own environment (ensure all required tools are installed and in PATH):
96+
97+
```bash
98+
nextflow run Pioneer-Research-Labs/long-read-qc --samplesheet samples.csv -profile local
99+
````
95100

96101
- Run on AWS Batch on the Insight server with a sample sheet entitled `samples.csv` located in the same directory:
97102

nextflow.config

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ profiles {
8787
cleanup = true
8888
}
8989

90+
local {
91+
process.executor = 'local'
92+
cleanup = true
93+
}
94+
9095
awsbatch {
9196
process.executor = 'awsbatch'
9297
process.queue = params.queue

0 commit comments

Comments
 (0)