nf-seqera @ 0.16.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.03.0-edge |
|---|---|
| Depends On | - |
| Release Date | 18 Mar 2026 09:06:30 (UTC) |
| Release Notes | - |
| Download URL | https://registry.nextflow.io/api/v1/plugins/nf-seqera/0.16.0/download/nf-seqera-0.16.0.zip |
| Store URL | https://public.cr.seqera.io/v2/nextflow/plugin/nf-seqera/blobs/sha256:398cb5da0fd5def755df5990b1a2c40ce88dd771ff8adda5f59c77a3b7041a02 |
| Size | 2.9 MB |
| Checksum | 4e3837df074449becee0ec05c10c7276203b2d7f3c96e0d565a527be0ae31c7745e4e63a306934fdbb8da19ef75153cea753a470973a547a53c81841609c490b |
| Total downloads | 44 View trends |
| Security Scan |
| Version | Nextflow version | Date | Status | Downloads |
|---|---|---|---|---|
| 0.19.0 | >=26.03.4-edge | 25 Apr 2026 15:26:33 (UTC) | 2 | |
| 0.18.0 | >=26.03.2-edge | 20 Apr 2026 21:57:51 (UTC) | 99 | |
| 0.17.0 | >=26.03.0-edge | 07 Apr 2026 21:32:32 (UTC) | 108 | |
| 0.16.0 | >=26.03.0-edge | 18 Mar 2026 09:06:30 (UTC) | 44 | |
| 0.15.0 | >=26.02.0-edge | 15 Mar 2026 17:30:40 (UTC) | 4 | |
| 0.13.0 | >=26.02.0-edge | 02 Mar 2026 22:27:51 (UTC) | 3 | |
| 0.12.0 | >=26.02.0-edge | 28 Feb 2026 13:06:28 (UTC) | 12 |