Changes between Version 1 and Version 2 of SOPs/nextflow


Ignore:
Timestamp:
03/25/25 15:01:50 (10 days ago)
Author:
xinlei.gao
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/nextflow

    v1 v2  
    2424
    2525== Installation of Nextflow
     26Nextflow can be used on Linux, macOS and windows. It requires Bash 3.2 (or later) and Java 17 (or later, up to 23) to be installed.
     27For the instructions to install Nextflow, please refer to this page: [https://www.nextflow.io/docs/latest/install.html]
    2628
     29The Nextflow command line tool has been installed on the WI slurm cluster: /nfs/BaRC_Public/apps/nextflow/nextflow
     30
     31The current version is nextflow version 24.04.4.5917.
     32
     33The main purpose of the Nextflow CLI is to run Nextflow pipelines with the run command. Nextflow can execute a local script (e.g. ./main.nf) or a remote project (e.g. github.com/foo/bar).
     34
     35To launch the execution of a pipeline project, hosted in a remote code repository, you simply need to specify its qualified name or the repository URL after the run command. The qualified name is formed by two parts: the owner name and the repository name separated by a / character.
     36
     37In other words if a Nextflow project is hosted, for example, in a GitHub repository at the address http://github.com/foo/bar, it can be executed by entering the following command in your shell terminal:
     38
     39
     40{{{
     41nextflow run foo/bar
     42}}}
     43
     44or using the project URL:
     45
     46
     47{{{
     48nextflow run http://github.com/foo/bar
     49}}}
     50
     51If the project is found, it will be automatically downloaded to the Nextflow home directory ($HOME/.nextflow by default) and cached for subsequent runs.
     52
     53Try this simple example by running the following command:
     54
     55
     56{{{
     57nextflow run nextflow-io/hello
     58}}}
     59
     60
     61This is a simple script showing the basic 'Hello World!' example for the Nextflow framework. It will download a trivial example from the repository published at http://github.com/nextflow-io/hello and execute it on your computer.
    2762
    2863