mahesh-panchal / nextflow-novice

This repository will soon be archived, to merge contribution with https://github.com/carpentries-incubator/workflows-nextflow
https://mahesh-panchal.github.io/nextflow-novice/
Other
1 stars 2 forks source link

Tip: Use star for output when exploring new tools. #7

Open mahesh-panchal opened 4 years ago

mahesh-panchal commented 4 years ago

Use * for output when exploring new tools and you don't know what the output is.

process my_new_tool {

    input:
    path file

    output:
    path "*"

    script:
    """
    fancy_new_tool -i $file
    """
}