nf-core/tools API documentation
Automated documentation for nf-core/tools (1.13.2
)
schema_lint
PipelineLint.schema_lint()
Pipeline schema syntax
Pipelines should have a nextflow_schema.json
file that describes the different
pipeline parameters (eg. params.something
, --something
).
Note
Reminder: you should generally never need to edit this JSON file by hand.
The nf-core schema build
command can create and edit the file for you
to keep it up to date, with a friendly user-interface for customisation.
The lint test checks the schema for the following:
- Schema should be a valid JSON file
- Schema should adhere to JSONSchema, Draft 7.
- Parameters can be described in two places:
- As
properties
in the top-level schema object - As
properties
within subschemas listed in a top-leveldefinitions
objects
- As
- The schema must describe at least one parameter
- There must be no duplicate parameter IDs across the schema and definition subschema
- All subschema in
definitions
must be referenced in the top-levelallOf
key - The top-level
allOf
key must not describe any non-existent definitions - Default parameters in the schema must be valid
- Core top-level schema attributes should exist and be set as follows:
$schema
:https://json-schema.org/draft-07/schema
$id
: URL to the raw schema file, eg.https://raw.githubusercontent.com/YOURPIPELINE/master/nextflow_schema.json
title
:YOURPIPELINE pipeline parameters
description
: The pipeline configmanifest.description
For example, an extremely minimal schema could look like this:
Note
You can check your pipeline schema without having to run the entire pipeline lint
by running nf-core schema lint
instead of nf-core lint