×

nf-azure @ 1.22.4

Provider: nextflow-io
Claimed: 14 Sep 2025 20:01:08 (UTC)
Description: The Microsoft Azure plugin integrates Nextflow with Azure Blob Storage and Azure Batch, enabling users to run bioinformatics pipelines on Azure's cloud infrastructure. It solves the problem of executing distributed workflows on Azure by providing cloud-native file storage and compute capabilities. Bioinformaticians and data scientists running large-scale genomics or computational biology analyses would use this plugin to leverage Azure's scalable resources.
Latest version: 1.23.0
Total downloads: 140.5K View trends

Summary

The Microsoft Azure plugin provides support for Azure Blob Storage as a file system, and Azure Batch as a compute executor for Nextflow pipelines.

Get Started

To use this plugin, add it to your nextflow.config:

plugins {
    id 'nf-azure'
}

Configure your Azure credentials and services:

azure {
    storage {
        accountName = '<YOUR STORAGE ACCOUNT NAME>'
        accountKey = '<YOUR STORAGE ACCOUNT KEY>'
    }

    batch {
        endpoint = 'https://<YOUR BATCH ACCOUNT NAME>.<REGION>.batch.azure.com'
        accountName = '<YOUR BATCH ACCOUNT NAME>'
        accountKey = '<YOUR BATCH ACCOUNT KEY>'
    }
}

Set the executor and work directory:

process.executor = 'azurebatch'
workDir = 'az://<YOUR CONTAINER>/work'

Examples

Basic Azure Batch Configuration

plugins {
    id 'nf-azure'
}

azure {
    storage {
        accountName = 'mystorageaccount'
        accountKey = System.getenv('AZURE_STORAGE_KEY')
    }

    batch {
        endpoint = 'https://mybatchaccount.westeurope.batch.azure.com'
        accountName = 'mybatchaccount'
        accountKey = System.getenv('AZURE_BATCH_KEY')
        autoPoolMode = true
        deletePoolsOnCompletion = true
    }
}

process.executor = 'azurebatch'
workDir = 'az://mycontainer/work'

Using Managed Identity

azure {
    managedIdentity {
        clientId = '<YOUR MANAGED IDENTITY CLIENT ID>'
    }
}

License

Apache License 2.0

Nextflow version >=25.11.0-edge
Depends On -
Release Date 21 May 2026 21:24:53 (UTC)
Release Notes -
Download URL https://registry.nextflow.io/api/v1/plugins/nf-azure/1.22.4/download/nf-azure-1.22.4.zip
Store URL https://public.cr.seqera.io/v2/nextflow/plugin/nf-azure/blobs/sha256:17a8cd298f7530966d52a2c9ce1f72d4e9a3559a792b25c8fb9fafcf50ba4c55
Size 15.6 MB
Checksum 687d87afe1b536e765934a0a0dc59efb5582982579d497b469d15067292025d6bc00ced701ed03a7ef1f85d37e15c45c4f81b257d00836b043712d9e89fc6c73
Total downloads 93 View trends
Security Scan
Version Nextflow version Date Status Downloads
1.23.0 >=25.11.0-edge 19 Jun 2026 08:17:41 (UTC) 100
1.22.6 >=25.11.0-edge 17 Jun 2026 16:34:19 (UTC) 105
1.20.3 >=25.09.2-edge 04 Jun 2026 20:49:42 (UTC) 16
1.22.5 >=25.11.0-edge 28 May 2026 08:51:04 (UTC) 212
1.22.4 >=25.11.0-edge 21 May 2026 21:24:53 (UTC) 93
1.22.3 >=25.11.0-edge 11 May 2026 13:32:16 (UTC) 112
1.22.2 >=25.11.0-edge 26 Mar 2026 20:13:15 (UTC) 1.2K
1.22.1 >=25.11.0-edge 18 Mar 2026 09:06:19 (UTC) 397
1.22.0 >=25.11.0-edge 28 Feb 2026 12:09:35 (UTC) 74
1.21.0 >=25.11.0-edge 28 Nov 2025 21:12:16 (UTC) 258
1.20.2 >=25.09.2-edge 21 Oct 2025 15:57:13 (UTC) 6.7K
1.20.1 >=25.09.0-edge 08 Oct 2025 18:21:50 (UTC) 21
1.20.0 >=25.08.0-edge 14 Sep 2025 20:20:47 (UTC) 10
1.16.0-patch1 >=25.01.0-edge 08 Sep 2025 13:27:01 (UTC) 2.7K
1.19.0 >=25.07.0-edge 15 Aug 2025 14:35:47 (UTC) 56
1.18.0 >=25.06.0-edge 06 Jul 2025 14:00:07 (UTC) 185
1.17.0 >=25.05.0-edge 02 Jun 2025 19:45:31 (UTC) 144
1.16.0 >=25.01.0-edge 08 May 2025 19:54:56 (UTC) 901
1.15.0 >=25.01.0-edge 23 Apr 2025 10:44:39 (UTC) 913
1.14.1 >=25.01.0-edge 19 Mar 2025 19:55:57 (UTC) 464
1.14.0 >=25.01.0-edge </