nextflow.extension

The nextflow.extension package implements the channel operators and other extension methods.

Class Diagram

dump
groupKey
branch
buffer
collectFile
collect
combine
concat
cross
groupTuple
join
map
merge
mix
multiMap
randomSample
splitCsv, splitFasta, splitFastq, splitText
take
toList, toSortedList
transpose
until
invokeMethod
ChannelEx
DumpOp
Nextflow
GroupKey
OperatorImpl
BranchOp
BufferOp
CollectFileOp
CollectOp
CombineOp
ConcatOp
CrossOp
GroupTupleOp
JoinOp
MapOp
MergeOp
MixOp
MultiMapOp
RandomSampleOp
SplitOp
TakeOp
ToListOp
TransposeOp
UntilOp
WorkflowBinding
OpCall

Note

Some classes may be excluded from the above diagram for brevity.

Notes

Operators are implemented using the GPars dataflow library. In general, an operator consumes one or more DataflowReadChannels and produces one or more DataflowWriteChannels. See Operators for details about each operator.

Other notable classes include Bolts and FilesEx, which implement various extension methods used throughout the Nextflow codebase. If you see a method that doesn’t appear to be implemented by the calling object, it may be implemented in one of these extension classes.