nf-seqera @ 0.12.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 | 28 Feb 2026 13:06:28 (UTC) |
| Release Notes | - |
| Download URL | https://registry.nextflow.io/api/v1/plugins/nf-seqera/0.12.0/download/nf-seqera-0.12.0.zip |
| Store URL | https://public.cr.seqera.io/v2/nextflow/plugin/nf-seqera/blobs/sha256:8d92845c2b8daa004a03788d6315303a9a1079ed2b7b3210cd7b7bf924327b43 |
| Size | 2.9 MB |
| Checksum | a9a5033e7323bc870c9cadf719b54e7ce8e34db0d50b3dbedd6608406daa74b66be69035479acb59c9254de1e1da77feac3b37b21fa960aeb0f62379070c411e |
| Total downloads | 6 View trends |
| Security Scan |