×

nf-seqera @ 0.17.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 compute infrastructure, eliminating the need to manage underlying resources. It solves the problem of infrastructure provisioning and management for Nextflow workflows. Users running genomics pipelines or other data-intensive workflows benefit from simplified deployment, cost tracking via resource labels, and automatic resource optimization.
Project URL: https://seqera.io
Latest version: 0.17.0
Total downloads: 105 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.03.0-edge
Depends On -
Release Date 07 Apr 2026 21:32:32 (UTC)
Release Notes -
Download URL https://registry.nextflow.io/api/v1/plugins/nf-seqera/0.17.0/download/nf-seqera-0.17.0.zip
Store URL https://public.cr.seqera.io/v2/nextflow/plugin/nf-seqera/blobs/sha256:6d90d13ff2df7b3142b5a30f07002ced37d0fde4fea13b208c76f8b3028b46a1
Size 2.9 MB
Checksum 9c3d02c150754cc8a805a26bca7f4ff6c589eb00273e7b29e192b963fb771db91b548a8b1663b6013f67fe01cfd349574a98ae78f7cb2ac6c2808815f7d7d7b0
Total downloads 46 View trends
Security Scan
Version Nextflow version Date Status Downloads
0.17.0 >=26.03.0-edge 07 Apr 2026 21:32:32 (UTC) 46
0.16.0 >=26.03.0-edge 18 Mar 2026 09:06:30 (UTC) 43
0.15.0 >=26.02.0-edge 15 Mar 2026 17:30:40 (UTC) 3
0.13.0 >=26.02.0-edge 02 Mar 2026 22:27:51 (UTC) 2
0.12.0 >=26.02.0-edge 28 Feb 2026 13:06:28 (UTC) 11