Channel Operators Installation & Import

Closure-based operators are provided by the nf-bids plugin extension methods.

Plugin Installation

Add the plugin to nextflow.config:

plugins {
	id 'nf-bids@{plugin-version}'
}

Import Operators

include { groupTupleBy; joinBy; combineBy } from 'plugin/nf-bids'

Verify Availability

Run a minimal script that calls one operator:

Channel.of([id: 'sub-01']).groupTupleBy { it.id }.view()

If plugin resolution fails, verify the version against the registry listing.

Next Step

Continue with Operator Usage.