Skip to content
Snippets Groups Projects
Commit 6a4ad186 authored by Lukas Jelonek's avatar Lukas Jelonek
Browse files

Rename channel

parent 8f828456
No related branches found
No related tags found
No related merge requests found
main.nf 100644 → 100755
#!/usr/bin/env nextflow
echo true
cheers = Channel.from 'Bonjour', 'Ciao', 'Hello', 'Hola'
Channel.from('Bonjour', 'Ciao', 'Hello', 'Hola')
.set{ch_greetings}
process sayHello {
input:
val x from cheers
val x from ch_greetings
script:
"""
echo '$x world!'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment