What to Update in Nextflow?
So, looking at our HELLO process, what do we need to add? We already have a publishDir, an output, and script, so let’s update those for cutadapt.
process HELLO { publishDir “results/” , mode: “copy”
__ __ output: path ‘hello.txt’ script: """ echo ‘Hello world!’ > hello.txt “”"}