Skip to content

nf-validation

A Nextflow plugin to work with validation of pipeline parameters and sample sheets.

nf-validation has now been renamed to nf-schema.

nf-validation has now been renamed to nf-schema. The nf-validation plugin will not receive any future updates. Please update your pipelines to use nf-schema instead. This change was necessary to prevent older versions of nf-core pipelines from with unpinned plugin references from breaking when updating to the latest version of nf-validation. Please pin the version of nf-schema in your pipeline's nextflow.config file:

plugins { id 'nf-schema@2.0.0' }

Introduction

This Nextflow plugin provides a number of functions that can be included into a Nextflow pipeline script to work with parameter and sample sheet schema. Using these functions you can:

  • ๐Ÿ“– Print usage instructions to the terminal (for use with --help)
  • โœ๏ธ Print log output showing parameters with non-default values
  • โœ… Validate supplied parameters against the pipeline schema
  • ๐Ÿ“‹ Validate the contents of supplied sample sheet files
  • ๐Ÿ› ๏ธ Create a Nextflow channel with a parsed sample sheet

Supported sample sheet formats are CSV, TSV and YAML (simple).

Quick Start

Declare the plugin in your Nextflow pipeline configuration file:

nextflow.config
plugins {
  id 'nf-validation'
}

This is all that is needed - Nextflow will automatically fetch the plugin code at run time.

[!NOTE] The snippet above will always try to install the latest version, good to make sure that the latest bug fixes are included! However, this can cause difficulties if running offline. You can pin a specific release using the syntax nf-validation@0.3.2

You can now include the plugin helper functions into your Nextflow pipeline:

main.nf
include { validateParameters; paramsHelp; paramsSummaryLog; fromSamplesheet } from 'plugin/nf-validation'

// Print help message, supply typical command line usage for the pipeline
if (params.help) {
   log.info paramsHelp("nextflow run my_pipeline --input input_file.csv")
   exit 0
}

// Validate input parameters
validateParameters()

// Print summary of supplied parameters
log.info paramsSummaryLog(workflow)

// Create a new channel of metadata from a sample sheet
// NB: `input` corresponds to `params.input` and associated sample sheet schema
ch_input = Channel.fromSamplesheet("input")

Dependencies

Slack channel

There is a dedicated nf-validation Slack channel in the Nextflow Slack workspace.

Credits

This plugin was written based on code initially written within the nf-core community, as part of the nf-core pipeline template.

We would like to thank the key contributors who include (but are not limited to):