Changes between Version 3 and Version 4 of SOPs/nextflow


Ignore:
Timestamp:
03/26/25 15:40:32 (9 days ago)
Author:
xinlei.gao
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/nextflow

    v3 v4  
    6969To run a pipeline:
    7070
    71 1. Choose a pipeline to run. See the available nf-core pipelines. If you have nf-core tools installed, run
    72 {{{
    73 nf-core pipelines list
    74 }}}
    75 
    76 
    77 2. Configure Nextflow to run on your system:
     711. Configure Nextflow to run on your system:
    7872
    7973The simplest way to run is with -profile docker (or singularity). This instructs Nextflow to execute jobs locally, with Docker (or Singularity) to fulfill software dependencies.
     
    8478
    8579
    86 3. Run the tests for your pipeline in the terminal to confirm everything is working:
     802. Run the tests for your pipeline in the terminal to confirm everything is working:
    8781
    8882
     
    9690
    9791
    98 4. Read the pipeline documentation to see which command-line parameters are required. This will be specific to your data type and usage.
     923. Read the pipeline documentation to see which command-line parameters are required. This will be specific to your data type and usage.
    9993
    100 5. To launch the pipeline with real data, omit the test config profile and provide the required pipeline-specific parameters. For example, to run the CUTandRun pipeline, your command will be similar to this:
     944. To launch the pipeline with real data, omit the test config profile and provide the required pipeline-specific parameters. For example, to run the CUTandRun pipeline, your command will be similar to this:
    10195
    10296
     
    110104}}}
    111105
    112 6. Once complete, check the pipeline execution and quality control reports (such as multiqc_report.html files for MultiQC reports). Each pipeline’s documentation describes the outputs to expect.
     1065. Once complete, check the pipeline execution and quality control reports (such as multiqc_report.html files for MultiQC reports). Each pipeline’s documentation describes the outputs to expect.
    113107
    114108Please refer to nf-core documentation for more details (https://nf-co.re/docs/usage/getting_started/introduction).