What is YAML?#

# What does YAML mean?​
YAML:​
    -Y: YAML​
    -A: Ain't​
    -M: Markup​
    -L: Language

Note

Markup Language is language which annotates text using tags or keywords in order to define how content is displayed

  • YAML documents are a collection of key-value pairs​

  • Indentation is used to denote structure

  • The length of the indentation should not matter, as long as you are consistent inside the same file

Format examples#

# A list of numbers using hyphens:​
numbers:​
    - one​
    - two​
    - three​

# The inline version:​
numbers: [ one, two, three ]
  • Indent with spaces, not tabs​.

  • There must be spaces between elements​

# This is correct​
name: tomo​

# This will fail​
name:tomo
# Strings don't require quotes:​
title: Introduction to YAML​

# But you can still use them if you prefer:​
title-with-quotes: 'Introduction to YAML'

Using a YAML file to specify a pipeline of functions for data processing is a common and practical approach to creating a reproducible data analysis workflow. This approach can help to ensure that your pipeline runs correctly and consistently over time, regardless of the platform or environment in which it is executed. By using a YAML file to define your pipeline, we are providing a user interface that is simple and intuitive for scientists to use. This can be especially helpful for those who are less familiar with programming in general or are new to the specific tools and libraries you are using.

We have a YAML Checker - Why use it? that can help you to validate your YAML file. Before running your pipeline, we highly recommend that you validate your YAML file using this utility. The checker will help you to identify errors in your YAML file.

We also recommend to use editors that support YAML format naturally, e.g.: Atom, Visual Studio Code, Notepad++, and others.