Home > Mobile >  nextflow: command not found
nextflow: command not found

Time:11-25

I am trying to use nextflow to run a pipeline, however when I run it it keeps saying nextflow: command not found. I have installed nextflow (I followed this tutorial https://www.nextflow.io/docs/latest/getstarted.html)

Do I need to add the path to nextflow in the config file?

CodePudding user response:

You need to move nextflow in a directory into $your PATH or use ./nextflow (provide it has been downloaded in the your current path)

  • Related