add nextflow d30e48d
This commit is contained in:
4
nextflow/docs/snippets/min-with-comparator.nf
Normal file
4
nextflow/docs/snippets/min-with-comparator.nf
Normal file
@@ -0,0 +1,4 @@
|
||||
// comparator function
|
||||
channel.of( "hello", "hi", "hey" )
|
||||
.min { a, b -> a.length() <=> b.length() }
|
||||
.view()
|
||||
Reference in New Issue
Block a user