Skip to content

Instantly share code, notes, and snippets.

@lynnlangit
Last active March 1, 2021 14:26
Show Gist options
  • Save lynnlangit/e5d3e86d632a7db796efae04145d44ff to your computer and use it in GitHub Desktop.
Save lynnlangit/e5d3e86d632a7db796efae04145d44ff to your computer and use it in GitHub Desktop.
#!/usr/bin/env nextflow
nextflow.enable.dsl=2
process sayHello{
input:
val djaeet
output:
stdout
"""
echo $djaeet
"""
}
workflow {
channel.of ('Ciao','Hello','Ola') | sayHello | view
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment