×

nf-seqera @ 0.13.0

Provider: nextflow-io
Claimed: 28 Feb 2026 10:11:39 (UTC)
Description: The Seqera Executor plugin integrates Nextflow with Seqera Cloud to execute tasks on managed cloud compute infrastructure, eliminating the need for users to provision and manage their own resources. It solves the problem of infrastructure complexity by providing a serverless execution environment with built-in support for resource tracking, cost labeling, and automated resource prediction. Bioinformaticians and data scientists running Nextflow workflows would use this plugin to simplify deployment and reduce operational overhead.
Project URL: https://seqera.io
Latest version: 0.13.0
Total downloads: 6 View trends

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
Version Nextflow version Date Status Downloads
0.13.0 >=26.02.0-edge 02 Mar 2026 22:27:51 (UTC) 0
0.12.0 >=26.02.0-edge 28 Feb 2026 13:06:28 (UTC) 6