Nextflow
A book for nextflow workflow tutorials
Nextflow Introduction
Nextflow is a workflow management system designed to streamline the execution of complex data pip...
Example RNA-seq Nextflow script from video
#!/usr/bin/env nextflow // Defining necessary variables including the path to the reference genom...
Nextflow.config file with Slurm compatibility
process { executor = 'slurm' time = < number of hours ('h') days ('d') to let job run eg....