nf-seqera @ 0.13.0
Summary
The Seqera Executor plugin provides integration with Seqera Cloud for executing Nextflow tasks using Seqera's managed compute infrastructure.
Get Started
To use this plugin, add it to your nextflow.config:
plugins {
id 'nf-seqera'
}
Configure the Seqera executor:
process {
executor = 'seqera'
}
seqera {
executor {
region = 'eu-west-1'
autoLabels = true
}
}
tower {
accessToken = '<SEQERA ACCESS TOKEN>'
}
Alternatively, set the access token via environment variable:
export TOWER_ACCESS_TOKEN='<YOUR ACCESS TOKEN>'
Examples
Running a workflow with the Seqera executor
nextflow.config:
plugins {
id 'nf-seqera'
}
process {
executor = 'seqera'
}
tower {
accessToken = '<SEQERA ACCESS TOKEN>'
}
seqera {
executor {
region = 'eu-west-1'
}
}
main.nf:
process HELLO {
output:
path 'hello.txt'
script:
'''
echo "Hello from Seqera Cloud" > hello.txt
'''
}
workflow {
HELLO()
}
Using resource labels for cost tracking
seqera {
executor {
region = 'us-east-1'
labels = [team: 'genomics', project: 'wgs-analysis']
autoLabels = true
}
}
Using the resource prediction model
seqera {
executor {
region = 'eu-west-1'
predictionModel = 'qr/v1'
}
}
License
Apache License 2.0
| Nextflow version | >=26.02.0-edge |
|---|---|
| Depends On | - |
| Release Date | 02 Mar 2026 22:27:51 (UTC) |
| Release Notes | - |
| Download URL | https://registry.nextflow.io/api/v1/plugins/nf-seqera/0.13.0/download/nf-seqera-0.13.0.zip |
| Store URL | https://public.cr.seqera.io/v2/nextflow/plugin/nf-seqera/blobs/sha256:51f294565bd248512b944f0debb3d03f4e2653559b275e5145eab2c6f79002a1 |
| Size | 2.9 MB |
| Checksum | e4cdca26982079f7318a4e9b43fe08b911fb91c4257ced0d37c21b190ab51e37e1393d390437aeaafbb80f8183ad7820d9fb6b83521d303ff63de8c215677013 |
| Total downloads | 0 View trends |
| Security Scan |