Skip to content

Instantly share code, notes, and snippets.

@tucano
Created July 17, 2014 08:23
Show Gist options
  • Save tucano/154557cb64d5b7c0a0d7 to your computer and use it in GitHub Desktop.
Save tucano/154557cb64d5b7c0a0d7 to your computer and use it in GitHub Desktop.
stage_one = {
// define output with produce
produce("OUTPUT.vcf") {
println "INPUT IS $input"
exec "touch $output"
}
}
run {
// DEFINE INPUT
"TEST.vcf" * [stage_one]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment