Demonstrations of various programming techniques for use inside Nextflow pipelines. This repository is meant to be a supplement to the official Nextflow documentation (links below).
-
an overview presentation about Nextflow can be found here (view here)
-
Nextflow HTML report examples can be found here:
Clone this repo:
git clone git@github.com:stevekm/nextflow-demos.git
cd nextflow-demos
Each subdirectory contains files to run sample Nextflow pipelines.
-
Makefile
: shortcut to commands to install and clean up Nextflow and its pipeline output -
main.nf
: Nextflow pipeline file -
nextflow.config
: config file for Nextflow pipeline (optional)
(listed in recommended order for new users)
-
print-samples
: Prints samples from a list to the terminal -
make-files
: Creates files based on sample ID inputs -
output-files
: Same asmake-files
but includes custom file output options -
async
: demonstration of asynchronous process execution -
custom-email-output
: Creates files from sample ID's then sends the user an email with a pipeline summary and files attached -
output-variable-name
: Same asoutput-files
but includes inline variable definition of output file names -
R-Python
: methods for using other scripting languages inside the Nextflow pipeline -
join-pairs
: joining pairs of samples based on ID across input channels -
parse-samplesheet
: parsing of a samplesheet as input for Nextflow pipeline -
reporting
: execution of Nextflow pipeline with reporting and config features enabled. -
profiles-Docker-module
: usage of 'profiles' to change process execution behavior to use Docker or environment modules -
Groovy-code
: example of using inline Groovy code inside the Nextflow pipeline
You can use the following commands inside the provided demo subdirs to run the demo pipelines.
# in a subdir in this repo
make
./nextflow run main.nf
or
make run
make clean
-
Nextflow Homepage: https://www.nextflow.io/
-
Nextflow Docs: https://www.nextflow.io/docs/latest/getstarted.html
-
Nextflow GitHub: https://github.com/nextflow-io/nextflow
-
Nextflow Google Group: https://groups.google.com/forum/#!forum/nextflow
-
Nextflow tutorial: https://github.com/nextflow-io/hack17-tutorial
-
Nextflow examples: https://github.com/nextflow-io/examples
-
Pipeline examples: https://github.com/nextflow-io/awesome-nextflow
-
Boilerplate example for writing pipelines: https://github.com/stevekm/nextflow-boilerplate
-
NYU pipelines:
-
exome sequencing: https://github.com/NYU-Molecular-Pathology/NGS580-nf
-
demultiplexing: https://github.com/NYU-Molecular-Pathology/demux-nf
-