Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. process doSomething {
  2.  
  3. label 'with_cpus'
  4.  
  5. input:
  6. set file(inputfile) from my_input_files
  7.  
  8. output:
  9. set file("${inputfile}.out") from my_output_files
  10.  
  11. script:
  12. """
  13. echo "my wonderful ${inputfile} > ${inputfile}.out"
  14. """
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement