Git Product home page Git Product logo

nextflow-example's Introduction

Open in Gitpod

A simple DSL2 pipeline

Nextflow is a workflow manager that allows the creation of portable, scalable, reproducible pipelines.

Nextflow gives the possibility to separate the configuration and the logic of the pipeline in different files.

Nextflow has a very strong support for different execution systems, so that you can test your pipeline locally, but then deploy it in your cluster (using the installed scheduler, such as Slurm or PBS), or to the cloud!

What are we doing

A simple workflow to assemble prokaryotic genomes, annotate them with Prokka, and gathering statistics to prepare a MultiQC report.

This typical workflow processes a set of multiple samples (filtering, assemblying, annotating), while for other steps will collect multiple outputs to produce a summary (QUAST for assemblys statistics, MultiQC report).

Blue blocks are executed once per sample, while gray dataset are collector, and are executed once per project.

graph TD;
 style input fill:#ff9,stroke:#333,stroke-width:2px
 classDef collapse fill:#EEE,stroke:#333,stroke-width:2px
 classDef multi fill:#9FF,stroke:#333,troke-width:2px
 input(FASTQ INPUT) --> SUBSAMPLE:::multi;
 SUBSAMPLE --> FASTP:::multi;
 FASTP --> ASSEMBLY:::multi;
 ASSEMBLY --> QUAST:::collapse;
 ASSEMBLY --> PROKKA:::multi;
 ASSEMBLY --> ABRICATE:::multi;
 ASSEMBLY --> MLST:::multi;
 ABRICATE --> SUMMARY:::collapse;
 SUMMARY --> MULTIQC:::collapse;
 MLST --> MULTIQC:::collapse;
 QUAST --> MULTIQC;
 PROKKA --> MULTIQC;

Resources

nextflow-example's People

Contributors

telatin avatar thanhleviet avatar vmikk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.