Skip to content

Latest commit

 

History

History
1408 lines (922 loc) · 77.5 KB

data_types.rst

File metadata and controls

1408 lines (922 loc) · 77.5 KB

Data types

AiiDA already ships with a number of useful data types. This section details the most common, and some handy features/functionalities to work with them.

The different data types can be accessed through the :py:func:`~aiida.plugins.factories.DataFactory` function (also exposed from :py:mod:`aiida.plugins`) by passing the corresponding entry point as an argument, for example when working in the verdi shell:

In [1]: ArrayData = DataFactory('core.array')

Important

Many of the examples in this section will assume you are working inside the verdi shell. If this is not the case, you will have to first load e.g. the :py:func:`~aiida.plugins.factories.DataFactory()` function:

from aiida.plugins import DataFactory

ArrayData = DataFactory('core.array')

A list of all the data entry points can be obtain running the command verdi plugin list aiida.data.

For all data types, you can follow the link to the corresponding data class in the API reference to read more about the class and its methods. We also detail what is stored in the database (mostly as attributes, so the information can be easily queried e.g. with the :ref:`QueryBuilder <how-to:query>`) and what is stored as a raw file in the AiiDA file repository (providing access to the file contents, but not efficiently queryable: this is useful for e.g. big data files that don't need to be queried for).

If you need to work with some specific type of data, first check the list of data types/plugins below, and if you don't find what you need, give a look to :ref:`Adding support for custom data types <topics:data_types:plugin>`.

Core data types

Below is a list of the core data types already provided with AiiDA, along with their entry point and where the data is stored once the node is stored in the AiiDA database.

Class Entry point Stored in database Stored in repository
:ref:`Int <topics:data_types:core:base>` core.int The integer value -
:ref:`Float <topics:data_types:core:base>` core.float The float value -
:ref:`Str <topics:data_types:core:base>` core.str The string -
:ref:`Bool <topics:data_types:core:base>` core.bool The boolean value -
:ref:`List <topics:data_types:core:base:iterable>` core.list The complete list -
:ref:`Dict <topics:data_types:core:base:iterable>` core.dict The complete dictionary -
:ref:`EnumData <topics:data_types:core:base:enum>` core.enum The value, name and the class identifier -
:ref:`JsonableData <topics:data_types:core:jsonable>` core.jsonable The JSON data and the class identifier -
:ref:`ArrayData <topics:data_types:core:array>` core.array The array names and corresponding shapes The array data in .npy format
:ref:`XyData <topics:data_types:core:array:xy>` core.array.xy The array names and corresponding shapes The array data in .npy format
:ref:`SinglefileData <topics:data_types:core:singlefile>` core.singlefile The filename The file
:ref:`FolderData <topics:data_types:core:folder>` core.folder - All files and folders
:ref:`RemoteData <topics:data_types:core:remote>` core.remote The computer and the absolute path to the folder All files and folders
:ref:`AbstractCode <topics:data_types:core:code>` - Default plugin, append/prepend text -
:ref:`Code <topics:data_types:core:code:legacy>` core.code The computer and the executable path All files and folders
:ref:`InstalledCode <topics:data_types:core:code:installed>` core.code.installed The computer and the executable path -
:ref:`PortableCode <topics:data_types:core:code:portable>` core.code.portable The relative path of the executable All files and folders of the code
:ref:`ContainerizedCode <topics:data_types:core:code:containerized>` core.code.containerized The computer, the image and the executable path -

Base types

There are a number of useful classes that wrap base Python data types (:py:class:`~aiida.orm.nodes.data.int.Int`, :py:class:`~aiida.orm.nodes.data.float.Float`, :py:class:`~aiida.orm.nodes.data.str.Str`, :py:class:`~aiida.orm.nodes.data.bool.Bool`) so they can be stored in the provenance. These are automatically loaded with the verdi shell, and also directly exposed from :py:mod:`aiida.orm`. They are particularly useful when you need to provide a single parameter to e.g. a :py:class:`~aiida.engine.processes.functions.workfunction`.

Each of these classes can most often be used in a similar way as their corresponding base type:

In [1]: total = Int(2) + Int(3)

If you need to access the bare value and not the whole AiiDA class, use the .value property:

In [2]: total.value
Out[2]: 5

Warning

While this is convenient if you need to do simple manipulations like multiplying two numbers, be very careful not to pass such nodes instead of the corresponding Python values to libraries that perform heavy computations with them. In fact, any operation on the value would be replaced with an operation creating new AiiDA nodes, that however can be orders of magnitude slower (see this discussion on GitHub). In this case, remember to pass the node.value to the mathematical function instead.

AiiDA has also implemented data classes for two basic Python iterables: :py:class:`~aiida.orm.nodes.data.list.List` and :py:class:`~aiida.orm.nodes.data.dict.Dict`. They can store any list or dictionary where elements can be a base python type (strings, floats, integers, booleans, None type):

In [1]: l = List(list=[1, 'a', False])

Note the use of the keyword argument list, this is required for the constructor of the :py:class:`~aiida.orm.nodes.data.list.List` class. You can also store lists or dictionaries within the iterable, at any depth level. For example, you can create a dictionary where a value is a list of dictionaries:

In [2]: d = Dict(dict={'k': 0.1, 'l': [{'m': 0.2}, {'n': 0.3}]})

To obtain the Python list or dictionary from a :py:class:`~aiida.orm.nodes.data.list.List` or :py:class:`~aiida.orm.nodes.data.dict.Dict` instance, you have to use the :py:meth:`~aiida.orm.nodes.data.list.List.get_list()` or :py:meth:`~aiida.orm.nodes.data.dict.Dict.get_dict()` methods:

In [3]: l.get_list()
Out[3]: [1, 'a', False]

In [4]: d.get_dict()
Out[4]: {'k': 0.1, 'l': [{'m': 0.2}, {'n': 0.3}]}

However, you can also use the list index or dictionary key to extract specific values:

In [5]: l[1]
Out[5]: 'a'

In [6]: d['k']
Out[6]: 0.1

You can also use many methods of the corresponding Python base type, for example:

In [7]: l.append({'b': True})

In [8]: l.get_list()
Out[8]: [1, 'a', False, {'b': True}]

For all of the base data types, their value is stored in the database in the attributes column once you store the node using the :py:meth:`~aiida.orm.nodes.node.Node.store()` method.

Warning

The :py:class:`~aiida.orm.List` and :py:class:`~aiida.orm.Dict` only store the Python base types, not the corresponding AiiDA data type. These will be converted to their corresponding Python base type when storing the :py:class:`~aiida.orm.List` or :py:class:`~aiida.orm.Dict` node in the database.

EnumData

An Enum member is represented by three attributes in the :py:class:`~aiida.orm.EnumData` class:

  • name: the member's name
  • value: the member's value
  • identifier: the string representation of the enum's identifier
In [1]: from enum import Enum
   ...: class Color(Enum):
   ...: RED = 1
   ...: GREEN = 2

In [2]: from aiida.orm import EnumData
   ...: color = EnumData(Color.RED)

In [3]: color.name
Out[3]: 'RED'

In [4]: color.value
Out[4]: 1

In [5]: color.get_member()
Out[5]: <Color.RED: 1>

JsonableData

:py:class:`~aiida.orm.JsonableData` is a data plugin that allows one to easily wrap existing objects that are JSON-able.

Any class that implements an as_dict method, returning a dictionary that is a JSON serializable representation of the object, can be wrapped and stored by this data plugin. To deserialize it should also implement a from_dict method, which takes the dictionary as input and returns the object.

In [1]: from aiida.orm import JsonableData
   ...: class MyClass:
   ...:     def __init__(self, a: int, b: int):
   ...:         self.a = a
   ...:         self.b = b
   ...:     def __str__(self):
   ...:         return f'MyClass({self.a}, {self.b})'
   ...:     def as_dict(self) -> dict:
   ...:         return {'a': self.a, 'b': self.b}
   ...:     @classmethod
   ...:     def from_dict(cls, d: dict):
   ...:         return cls(d['a'], d['b'])
   ...:
   ...: my_object = MyClass(1, 2)
   ...: my_jsonable = JsonableData(my_object)
   ...: str(my_jsonable.obj)
Out[1]: 'MyClass(1, 2)'

ArrayData

The :py:class:`~aiida.orm.ArrayData` class can be used to represent numpy arrays in the provenance. Each array is assigned to a name specified by the user using the :py:meth:`~aiida.orm.ArrayData.set_array()` method:

In [1]: ArrayData = DataFactory('core.array'); import numpy as np

In [2]: array = ArrayData()

In [3]: array.set_array('matrix', np.array([[1, 2], [3, 4]]))

Note that one :py:class:`~aiida.orm.ArrayData` instance can store multiple arrays under different names:

In [4]: array.set_array('vector', np.array([[1, 2, 3, 4]]))

To see the list of array names stored in the :py:class:`~aiida.orm.ArrayData` instance, you can use the :py:meth:`~aiida.orm.ArrayData.get_arraynames()` method:

In [5]: array.get_arraynames()
Out[5]: ['matrix', 'vector']

If you want the array corresponding to a certain name, simply supply the name to the :py:meth:`~aiida.orm.ArrayData.get_array()` method:

In [6]: array.get_array('matrix')
Out[6]:
array([[1, 2],
      [3, 4]])

As with all nodes, you can store the :py:class:`~aiida.orm.ArrayData` node using the :py:meth:`~aiida.orm.nodes.node.Node.store()` method. However, only the names and shapes of the arrays are stored to the database, the content of the arrays is stored to the repository in the numpy format (.npy).

XyData

In case you are working with arrays that have a relationship with each other, i.e. y as a function of x, you can use the :py:class:`~aiida.orm.XyData` class:

In [1]: XyData = DataFactory('core.array.xy'); import numpy as np

In [2]: xy = XyData()

This class is equipped with setter and getter methods for the x and y values specifically, and takes care of some validation (e.g. check that they have the same shape). The user also has to specify the units for both x and y:

In [3]: xy.set_x(np.array([10, 20, 30, 40]), 'Temperate', 'Celsius')

In [4]: xy.set_y(np.array([1, 2, 3, 4]), 'Volume Expansion', '%')

Note that you can set multiple y values that correspond to the x grid. Same as for the :py:class:`~aiida.orm.ArrayData`, the names and shapes of the arrays are stored to the database, the content of the arrays is stored to the repository in the numpy format (.npy).

SinglefileData

In order to include a single file in the provenance, you can use the :py:class:`~aiida.orm.nodes.data.singlefile.SinglefileData` class. This class can be initialized via the absolute path to the file you want to store:

In [1]: SinglefileData = DataFactory('core.singlefile')

In [2]: single_file = SinglefileData('/absolute/path/to/file')

When storing the node, the filename is stored in the database and the file itself is copied to the repository. The contents of the file in string format can be obtained using the :py:meth:`~aiida.orm.nodes.data.singlefile.SinglefileData.get_content()` method:

In [3]: single_file.get_content()
Out[3]: 'The file content'

For large files, reading the entire content into memory using :py:meth:`~aiida.orm.nodes.repository.NodeRepository.get_object_content()` may not be desirable. Instead, a file-like handle can be opened to a file in the repository which can be used to read the content as a stream. This can be useful, for example, to copy a large file from the repository to a file on disk, without loading it entirely into memory:

In [4]: import shutil
        with single_file.open(mode='rb') as source:
            with open('copy.txt', mode='wb') as target:
                shutil.copyfileobj(source, target)

Note

To guarantee the file is copied over identically (and there are no encoding issues), the files are opened in "binary" mode by including the b character in the mode argument.

For efficiency reasons, the repository interface only provides access to object content through file-like objects or strings. However, for certain use-cases, the object content _needs_ to be made available as a file on the local file system. For example, the numpy.loadtxt method only accepts a filepath, and no file-like objects. In this case, the content of the file can be made available on the local file system using the :py:meth:`~aiida.orm.nodes.repository.NodeRepository.as_path()` context manager:

In [5]: with single_file.as_path() as filepath:
            numpy.loadtxt(filepath)

The yielded value filepath is an instance of pathlib.Path that points to a location on the local file system containing the content of the file. The temporary copy on the local file system is automatically cleaned up once the context manager is exited.

Note

The temporary directory to which the content is copied is created using the :meth:`tempfile.TemporaryDirectory` function of the standard library. Its location is chosen from a platform-dependent list or can be controlled through the TMPDIR environment variable (see the official documentation for details).

Warning

The :py:meth:`~aiida.orm.nodes.repository.NodeRepository.as_path()` context manager will copy the file content to a temporary folder on the local file system. For large files this can be an expensive operation and it is inefficient since it requires an additional read and write operation. Therefore, if it is possible to use file-like objects or read the content into memory, the :py:meth:`~aiida.orm.nodes.repository.NodeRepository.get_object_content()` and :py:meth:`~aiida.orm.nodes.repository.NodeRepository.open()` methods should be preferred.

FolderData

The :py:class:`~aiida.orm.nodes.data.folder.FolderData` class stores sets of files and folders (including its subfolders). To store a complete directory, simply use the tree keyword:

In [1]: FolderData = DataFactory('core.folder')

In [2]: folder = FolderData(tree='/absolute/path/to/directory')

Alternatively, you can construct the node first and then use the various repository methods to add objects from directory and file paths:

In [1]: folder = FolderData()

In [2]: folder.put_object_from_tree('/absolute/path/to/directory')

In [3]: folder.put_object_from_file('/absolute/path/to/file1.txt', path='file1.txt')

or from file-like objects:

In [4]: folder.put_object_from_filelike(filelike_object, path='file2.txt')

Inversely, the content of the files stored in the :py:class:`~aiida.orm.nodes.data.folder.FolderData` node can be accessed using the :py:meth:`~aiida.orm.nodes.repository.NodeRepository.get_object_content()` method:

In [5]: folder.get_object_content('file1.txt')
Out[5]: 'File 1 content\n'

To see the files that are stored in the :py:class:`~aiida.orm.nodes.data.folder.FolderData`, you can use the :py:meth:`~aiida.orm.nodes.repository.NodeRepository.list_object_names()` method:

In [6]: folder.list_object_names()
Out[6]: ['subdir', 'file1.txt', 'file2.txt']

In this example, subdir was a sub directory of /absolute/path/to/directory, whose contents where added above. to list the contents of the subdir directory, you can pass its path to the :py:meth:`~aiida.orm.nodes.repository.NodeRepository.list_object_names()` method:

In [7]: folder.list_object_names('subdir')
Out[7]: ['file3.txt', 'module.py']

The content can once again be shown using the :py:meth:`~aiida.orm.nodes.repository.NodeRepository.get_object_content()` method by passing the correct path:

In [8]: folder.get_object_content('subdir/file3.txt')
Out[8]: 'File 3 content\n'

Since the :py:class:`~aiida.orm.nodes.data.folder.FolderData` node is simply a collection of files, it simply stores these files in the repository.

For large files, reading the entire content into memory using :py:meth:`~aiida.orm.nodes.repository.NodeRepository.get_object_content()` may not be desirable. Instead, a file-like handle can be opened to a file in the repository which can be used to read the content as a stream. This can be useful, for example, to copy a large file from the repository to a file on disk, without loading it entirely into memory:

In [9]: import shutil
        with folder.open('subdir/file3.txt', mode='rb') as source:
            with open('copy.txt', mode='wb') as target:
                shutil.copyfileobj(source, target)

Note

To guarantee the file is copied over identically (and there are no encoding issues), the files are opened in "binary" mode by including the b character in the mode argument.

For efficiency reasons, the repository interface only provides access to object content through file-like objects or strings. However, for certain use-cases, the object content _needs_ to be made available as a file on the local file system. For example, the numpy.loadtxt method only accepts a filepath, and no file-like objects. In this case, the content of the node's repository can be made available on the local file system using the :py:meth:`~aiida.orm.nodes.repository.NodeRepository.as_path()` context manager:

In [10]: with folder.as_path() as filepath:
             print(list(filepath.iterdir()))
Out[10]: ['subdir', 'file1.txt', 'file2.txt']

The yielded value dirpath is an instance of pathlib.Path that points to a location on the local file system containing the complete content of the repository. The temporary copy on the local file system is automatically cleaned up once the context manager is exited.

Note

The temporary directory to which the content is copied is created using the :meth:`tempfile.TemporaryDirectory` function of the standard library. Its location is chosen from a platform-dependent list or can be controlled through the TMPDIR environment variable (see the official documentation for details).

Optionally, an explicit object can be specified:

In [11]: with folder.as_path('some_data_file.dat') as filepath:
             numpy.loadtxt(filepath)

If the object at path is a directory, the returned value points to a directory that contains its contents. If it is a file, the returned value points to a file with the content of the object.

Warning

The :py:meth:`~aiida.orm.nodes.repository.NodeRepository.as_path()` context manager will copy the content to a temporary folder on the local file system. For large repositories this can be an expensive operation and it is inefficient since it requires an additional read and write operation. Therefore, if it is possible to use file-like objects or read the content into memory, the :py:meth:`~aiida.orm.nodes.repository.NodeRepository.get_object_content()` and :py:meth:`~aiida.orm.nodes.repository.NodeRepository.open()` methods should be preferred.

RemoteData

The :py:class:`~aiida.orm.RemoteData` node represents a "symbolic link" to a specific folder on a remote computer. Its main use is to allow users to persist the provenance when e.g. a calculation produces data in a raw/scratch folder, and the whole folder needs to be provided to restart/continue. To create a :py:class:`~aiida.orm.RemoteData` instance, simply pass the remote path to the folder and the computer on which it is stored:

In [1]: RemoteData = DataFactory('core.remote')

In [2]: computer = load_computer(label='computer_label')

In [3]: remote = RemoteData(remote_path='/absolute/path/to/remote/directory' computer=local)

You can see the contents of the remote folder by using the :py:meth:`~aiida.orm.RemoteData.listdir()` method:

In [4]: remote.listdir()
Out[4]: ['file2.txt', 'file1.txt', 'subdir']

To see the contents of a subdirectory, pass the relative path to the :py:meth:`~aiida.orm.RemoteData.listdir()` method:

In [5]: remote.listdir('subdir')
Out[5]: ['file3.txt', 'module.py']

Warning

Using the :py:meth:`~aiida.orm.RemoteData.listdir()` method, or any method that retrieves information from the remote computer, opens a connection to the remote computer using its transport type. Their use is strongly discouraged when writing scripts and/or workflows.

AbstractCode

.. versionadded:: 2.1

The :class:`aiida.orm.nodes.data.code.abstract.AbstractCode` class provides the abstract class for objects that represent a "code" that can be executed through a :class:`aiida.engine.processes.calcjobs.calcjob.CalcJob` plugin. There are currently four implementations of this abstract class:

Code

.. deprecated:: 2.1

Historically, there was only one code implementation, the :class:`~aiida.orm.nodes.data.code.legacy.Code`, which implemented two different types of code:

  • An executable pre-installed on a computer, represented by a :class:`~aiida.orm.computers.Computer`.
  • A directory containing all code files including an executable which would be uploaded to

These two types were referred to as "remote" and "local" codes. However, this nomenclature would lead to confusion as a "remote" code could also refer to an executable on the localhost, i.e., the machine where AiiDA itself runs. In addition, having two different concepts implemented by a single class led to a unintuitive interface. Therefore, the Code class was deprecated in aiida-core==2.1 and replaced by the :ref:`InstallCode <topics:data_types:core:code:installed>` and :ref:`InstallCode <topics:data_types:core:code:installed>`, respectively. The Code class is now deprecated and will be removed in aiida-core==3.0.

InstalledCode

.. versionadded:: 2.1

The :class:`~aiida.orm.nodes.data.code.installed.InstalledCode` class is an implementation of the :class:`~aiida.orm.nodes.data.code.abstract.AbstractCode` class that represents an executable code on a remote computer. This plugin should be used if an executable is pre-installed on a computer. The InstalledCode represents the code by storing the filepath of the relevant executable and the computer on which it is installed. The computer is represented by an instance of :class:`~aiida.orm.computers.Computer`. Each time a :class:`~aiida.engine.CalcJob` is run using an InstalledCode, it will run its executable on the associated computer. Example of creating an InstalledCode:

from aiida.orm import InstalledCode
code = InstalledCode(
    label='some-label',
    computer=load_computer('localhost'),
    filepath_executable='/usr/bin/bash'
)
.. versionchanged:: 2.3
    The ``filepath_executable`` is no longer required to be an absolute path but can be just the executable name.


PortableCode

.. versionadded:: 2.1

The :class:`~aiida.orm.nodes.data.code.portable.PortableCode` class is an implementation of the :class:`~aiida.orm.nodes.data.code.abstract.AbstractCode` class that represents an executable code stored in AiiDA's storage. This plugin should be used for executables that are not already installed on the target computer, but instead are available on the machine where AiiDA is running. The plugin assumes that the code is self-contained by a single directory containing all the necessary files, including a main executable. When constructing a PortableCode, passing the absolute filepath as filepath_files will make sure that all the files contained within are uploaded to AiiDA's storage. The filepath_executable should indicate the filename of the executable within that directory. Each time a :class:`~aiida.engine.CalcJob` is run using a PortableCode, the uploaded files will be automatically copied to the working directory on the selected computer and the executable will be run there. Example of creating an PortableCode:

from pathlib import Path
from aiida.orm import PortableCode
code = PortableCode(
    label='some-label',
    filepath_files=Path('/some/path/code'),
    filepath_executable='executable.exe'
)

ContainerizedCode

.. versionadded:: 2.1

The :class:`~aiida.orm.nodes.data.code.containerized.ContainerizedCode` class allows running an executable within a container image on a target computer. The data plugin stores the following information in the database:

  • image_name: The name of the container image (e.g., a URI like docker://alpine:3 or an absolute file path like /path/to/image.sif).
  • filepath_executable: The filepath of the executable within the container (e.g. /usr/bin/bash).
  • engine_command: The bash command to invoke the container image (e.g. singularity exec --bind $PWD:$PWD {image_name}). The exact form of this command will depend on the containerization technology that is used.
  • computer: The :class:`~aiida.orm.computers.Computer` on which to run the container.

Note

If the container image is not yet present on the target computer, most container engines will pull the image from the registry at first use. This can take a while if the image is large.

Important

If the engine_command contains variables (such as in the singularity exec --bind $PWD:$PWD {image_name} example), it is crucial that the Computer needs to have the use_double_quotes setting set to True. By default, a Computer will use single quotes to escape command line arguments and so the $PWD would not be expanded. If this wasn't defined as such when the Computer was created, it can be changed through the API:

computer = load_computer('some-computer')
computer.set_use_double_quotes(True)

Setup

A ContainerizedCode can be created through the CLI as well as the API. The following examples show how to setup running bash in a base Docker container through Singularity to be run on the Computer named some-computer:

.. tab-set::

    .. tab-item:: CLI

        .. code-block:: console

            verdi code create core.code.containerized \
                --non-interactive \
                --label containerized-code \
                --default-calc-job-plugin core.arithmetic.add \
                --computer some-computer \
                --filepath-executable "/bin/sh" \
                --image-name "docker://alpine:3" \
                --engine-command "singularity exec --bind $PWD:$PWD {image_name}"

    .. tab-item:: API

        .. code-block:: python

            from aiida.orm import ContainerizedCode, load_computer

            code = ContainerizedCode(
                computer=load_computer('some-computer')
                filepath_executable='/bin/sh'
                image_name='docker://alpine:3',
                engine_command='singularity exec --bind $PWD:$PWD {image_name}'
            ).store()

Please refer to the section on :ref:`supported container technologies <topics:data_types:core:code:installed:containerized:support>` for an overview and specific setup instructions for each containerization solution.

Run

A ContainerizedCode is used to launch a calculation just like any other code. If a default calculation job plugin is defined, a process builder can be obtained with get_builder:

from aiida.engine import submit
from aiida.orm import load_code

code = load_code('containerized-code')
builder = code.get_builder()
# Define the rest of the inputs
submit(builder)

Important

If a containerized code is used for a calculation that enables MPI (see :ref:`Controlling MPI <topics:calculations:usage:calcjobs:mpi>`), the MPI command line arguments are placed in front of the container runtime. For example, when running Singularity with MPI enabled, the runline in the submission script will be written as:

"mpirun" "-np" "1" "singularity" "exec" "--bind" "$PWD:$PWD" "ubuntu" '/bin/bash' '--version' '-c' < "aiida.in" > "aiida.out" 2> "aiida.err"

This means that the containerization program is launched as a normal MPI program, and so it needs to support forwarding the execution context to the container application. It is currently not possible to have MPI invoked inside the container runtime.

Supported container technologies

The ContainerizedCode is compatible with a variety of containerization technologies:

.. tab-set::

    .. tab-item:: Docker

        To use `Docker <https://www.docker.com/>`_ ``aiida-core==2.3.0`` or higher is required in order to be able to set ``wrap_cmdline_params = True``.
        When setting up a code for a Docker container, use the following ``engine_command`` when setting up the code:

        .. code-block:: console

            docker run -i -v $PWD:/workdir:rw -w /workdir {image_name} sh -c

        .. note:: Currently running with MPI is not yet supported, as it needs to be called inside of the container which is currently not possible.
            The associated computer should also be configured to have the setting ``use_double_quotes = False``.
            This can be set from the Python API using ``load_computer('idenfitier').set_use_double_quotes(False)``.

        The following configuration provides an example to setup Quantum ESPRESSO's ``pw.x`` to be run by Docker on the local host

        .. code-block:: yaml

            label: qe-pw-on-docker
            computer: localhost
            engine_command: docker run -i -v $PWD:/workdir:rw -w /workdir {image_name} sh -c
            image_name: haya4kun/quantum_espresso
            filepath_executable: pw.x
            default_calc_job_plugin: quantumespresso.pw
            use_double_quotes: false
            wrap_cmdline_params: true

        Save the configuration to ``code.yml`` and create the code using the ``verdi`` CLI:

        .. code-block:: console

            verdi code create core.code.containerized -n --config=code.yml

    .. tab-item:: Singularity

        To use `Singularity <https://singularity-docs.readthedocs.io/en/latest/>`_ use the following ``engine_command`` when setting up the code:

        .. code-block:: console

            singularity exec --bind $PWD:$PWD {image_name}

    .. tab-item:: Sarus

        To use `Sarus <https://sarus.readthedocs.io/en/stable/>`_ use the following ``engine_command`` when setting up the code:

        .. code-block:: console

            sarus run --mount=src=$PWD,dst=/workdir,type=bind --workdir=/workdir {image_name}



Materials science data types

Since AiiDA was first developed within the computational materials science community, aiida-core still contains several data types specific to this field. This sections lists these data types and provides some important examples of their usage.

Class Entry point Stored in database Stored in repository
:ref:`StructureData <topics:data_types:materials:structure>` structure The cell, periodic boundary conditions, atomic positions, species and kinds. \-
:ref:`TrajectoryData <topics:data_types:materials:trajectory>` array.trajectory The structure species and the shape of the cell, step and position arrays. The array data in numpy format.
:ref:`UpfData <topics:data_types:materials:upf>` upf The MD5 of the UPF and the element of the pseudopotential. The pseudopotential file.
:ref:`KpointsData <topics:data_types:materials:kpoints>` array.kpoints

(as mesh) The mesh and offset.

(as list) The "kpoints" array shape, labels and their indices.

\-

The array data in numpy format.

:ref:`BandsData <topics:data_types:materials:bands>` array.bands The units, labels and their numbers, and shape of the bands and kpoints arrays. The array data in numpy format.

StructureData

The :py:class:`~aiida.orm.nodes.data.structure.StructureData` data type represents a structure, i.e. a collection of sites defined in a cell. The boundary conditions are periodic by default, but can be set to non-periodic in any direction.

As an example, say you want to create a :py:class:`~aiida.orm.nodes.data.structure.StructureData` instance for bcc Li. Let's begin with creating the instance by defining its unit cell:

In [1]: StructureData = DataFactory('core.structure')

In [2]: unit_cell = [[3.0, 0.0, 0.0], [0.0, 3.0, 0.0], [0.0, 0.0, 3.0]]

In [3]: structure = StructureData(cell=unit_cell)

Note

Default units for crystal structure cell and atomic coordinates in AiiDA are Å (Ångström).

Next, you can add the Li atoms to the structure using the :py:class:`~aiida.orm.nodes.data.structure.StructureData.append_atom()` method:

In [4]: structure.append_atom(position=(0.0, 0.0, 0.0), symbols="Li")

In [5]: structure.append_atom(position=(1.5, 1.5, 1.5), symbols="Li")

You can check if the cell and sites have been set up properly by checking the cell and sites properties:

In [6]: structure.cell
Out[6]: [[3.5, 0.0, 0.0], [0.0, 3.5, 0.0], [0.0, 0.0, 3.5]]

In [7]: structure.sites
Out[7]: [<Site: kind name 'Li' @ 0.0,0.0,0.0>, <Site: kind name 'Li' @ 1.5,1.5,1.5>]

From the :py:class:`~aiida.orm.nodes.data.structure.StructureData` node you can also obtain the formats of well-known materials science Python libraries such as the Atomic Simulation Environment (ASE) and pymatgen:

In [8]: structure.get_ase()
Out[8]: Atoms(symbols='Li2', pbc=True, cell=[3.5, 3.5, 3.5], masses=...)

In [9]: structure.get_pymatgen()
Out[9]:
Structure Summary
Lattice
    abc : 3.5 3.5 3.5
angles : 90.0 90.0 90.0
volume : 42.875
      A : 3.5 0.0 0.0
      B : 0.0 3.5 0.0
      C : 0.0 0.0 3.5
PeriodicSite: Li (0.0000, 0.0000, 0.0000) [0.0000, 0.0000, 0.0000]
PeriodicSite: Li (1.5000, 1.5000, 1.5000) [0.4286, 0.4286, 0.4286]
.. seealso:: :ref:`topics:data_types:core:jsonable`, which can store any other Pymatgen class.

Exporting

The following export formats are available for :py:class:`~aiida.orm.nodes.data.structure.StructureData`:

  • xsf (format supported by e.g. XCrySDen and other visualization software; supports periodic cells)
  • xyz (classical xyz format, does not typically support periodic cells (even if the cell is indicated in the comment line)
  • cif (export to CIF format, without symmetry reduction, i.e. always storing the structure as P1 symmetry)

The node can be exported using the verdi CLI, for example:

$ verdi data core.structure export --format xsf <IDENTIFIER> > Li.xsf

Where <IDENTIFIER> is one of the possible identifiers of the node, e.g. its PK or UUID. This outputs the structure in xsf format and writes it to a file.

TrajectoryData

The :py:class:`~aiida.orm.nodes.data.array.trajectory.TrajectoryData` data type represents a sequences of StructureData objects, where the number of atomic kinds and sites does not change over time. Beside the coordinates, it can also optionally store velocities. If you have a list of :py:class:`~aiida.orm.nodes.data.structure.StructureData` instances called structure_list that represent the trajectory of your system, you can create a :py:class:`~aiida.orm.nodes.data.array.trajectory.TrajectoryData` instance from this list:

In [1]: TrajectoryData = DataFactory('core.array.trajectory')

In [2]: trajectory = TrajectoryData(structure_list)

Note that contrary with the :py:class:`~aiida.orm.nodes.data.structure.StructureData` data type, the cell and atomic positions are stored a numpy array in the repository and not in the database.

Exporting

You can export the :py:class:`~aiida.orm.nodes.data.array.trajectory.TrajectoryData` node with verdi data core.trajectory export, which accepts a number of formats including xsf and cif, and additional parameters like --step NUM (to choose to export only a given trajectory step).

The following export formats are available:

  • xsf (format supported by e.g. XCrySDen and other visualization software; supports periodic cells)
  • cif (export to CIF format, without symmetry reduction, i.e. always storing the structures as P1 symmetry)
.. todo::

  Think of more example use cases, see `#4529`_.

UpfData

The :py:class:`~aiida.orm.nodes.data.upf.UpfData` data type represents a pseudopotential in the .UPF format (e.g. used by Quantum ESPRESSO - see also the AiiDA Quantum ESPRESSO plugin). Usually these will be installed as part of a pseudopotential family, for example via the aiida-pseudo package.

To see the pseudopotential families that have been installed in your AiiDA profile, you can use the verdi CLI:

$ verdi data core.upf listfamilies
Success: * SSSP_v1.1_precision_PBE [85 pseudos]
Success: * SSSP_v1.1_efficiency_PBE [85 pseudos]

KpointsData

The :py:class:`~aiida.orm.nodes.data.array.kpoints.KpointsData` data type represents either a grid of k-points (in reciprocal space, for crystal structures), or explicit list of k-points (optionally with a weight associated to each one).

To create a :py:class:`~aiida.orm.nodes.data.array.kpoints.KpointsData` instance that describes a regular (2 x 2 x 2) mesh of k-points, execute the following set of commands in the verdi shell:

In [1]: KpointsData = DataFactory('core.array.kpoints')
   ...: kpoints_mesh = KpointsData()
   ...: kpoints_mesh.set_kpoints_mesh([2, 2, 2])

This will create a (2 x 2 x 2) mesh centered at the Gamma point (i.e. without offset).

Alternatively, you can also define a :py:class:`~aiida.orm.nodes.data.array.kpoints.KpointsData` node from a list of k-points using the :py:meth:`~aiida.orm.nodes.data.array.kpoints.KpointsData.set_kpoints()` method:

In [2]: kpoints_list = KpointsData()
   ...: kpoints_list.set_kpoints([[0, 0, 0], [0.5, 0.5, 0.5]])

In this case, you can also associate labels to (some of the) points, which is very useful for generating plots of the band structure (and storing them in a :py:class:`~aiida.orm.nodes.data.array.bands.BandsData` instance):

In [3]: kpoints_list.labels = [[0, "G"]]

In [4]: kpoints_list.labels
Out[4]: [(0, 'G')]

Automatic computation of k-point paths

AiiDA provides a number of tools and wrappers to automatically compute k-point paths given a cell or a crystal structure.

The main interface is provided by the two methods :py:func:`aiida.tools.data.array.kpoints.main.get_kpoints_path` and :py:func:`aiida.tools.data.array.kpoints.main.get_explicit_kpoints_path`.

These methods are also conveniently exported directly as, e.g., aiida.tools.get_kpoints_path.

The difference between the two methods is the following:

Depending on how the underlying code works, one method might be preferred on the other.

The docstrings of the methods describe the expected parameters. The general interface requires always a StructureData as the first parameter structure, as well as a string for the method to use (by default this is seekpath, but also the legacy method implemented in earlier versions of AiiDA is available; see description below).

Additional parameters are passed as kwargs to the underlying implementation, that often accepts a different number of parameters.

Seekpath implementation

When specifying method='seekpath', the seekpath library is used to generate the path. Note that this requires seekpath to be installed (this is not available by default, in order to reduce the dependencies of AiiDA core, but can be easily installed using pip install seekpath).

For a full description of the accepted parameters, we refer to the docstring of the underlying methods :py:func:`aiida.tools.data.array.kpoints.seekpath.get_explicit_kpoints_path` and :py:func:`aiida.tools.data.array.kpoints.seekpath.get_kpoints_path`, and for more general information to the seekpath documentation.

If you use this implementation, please cite the Hinuma paper:

Y. Hinuma, G. Pizzi, Y. Kumagai, F. Oba, I. Tanaka,
Band structure diagram paths based on crystallography,
Comp. Mat. Sci. 128, 140 (2017)
DOI: 10.1016/j.commatsci.2016.10.015
.. dropdown:: Legacy implementation

  This refers to the implementation that has been available since the early versions of AiiDA.

  .. note:: In the 3D case (all three directions have periodic boundary conditions), this implementation expects that the structure is already standardized according to the Setyawan paper (see journal reference below).
    If this is not the case, the kpoints and band structure returned will be incorrect.
    The only case that is dealt correctly by the library is the case when axes are swapped, where the library correctly takes this swapping/rotation into account to assign kpoint labels and coordinates.

    We therefore suggest that you use the seekpath implementation, that is able to automatically correctly identify the standardized crystal structure (primitive and conventional) as described in the `Hinuma paper <https://doi.org/10.1016/j.commatsci.2016.10.015>`_.

  For a full description of the accepted parameters, we refer to the docstring of the underlying methods :py:func:`aiida.tools.data.array.kpoints.legacy.get_explicit_kpoints_path` and :py:func:`aiida.tools.data.array.kpoints.legacy.get_kpoints_path`, and for more general information to the `seekpath documentation <https://seekpath.readthedocs.io/>`_.

  If you use this implementation, please cite the correct reference from the following ones:

  - The 3D implementation is based on the `Setyawan paper <https://doi.org/10.1016/j.commatsci.2010.05.010>`_::

      W. Setyawan, S. Curtarolo,
      High-throughput electronic band structure calculations: Challenges and tools,
      Comp. Mat. Sci. 49, 299 (2010)
      DOI: 10.1016/j.commatsci.2010.05.010

  - The 2D implementation is based on the `Ramirez paper <https://doi.org/10.1002/qua.560300306>`_::

      R. Ramirez and M. C. Bohm,
      Simple geometric generation of special points in brillouin-zone integrations. Two-dimensional bravais lattices
      Int. J. Quant. Chem., XXX, 391-411 (1986)
      DOI: 10.1002/qua.560300306

BandsData

The :py:class:`~aiida.orm.nodes.data.array.bands.BandsData` data type is dedicated to store band structures of different types (electronic bands, phonons, or any other band-structure-like quantity that is a function of the k-points in the Brillouin zone). In this section we describe the usage of the BandsData to store the electronic band structure of silicon and some logic behind its methods. The dropdown panels below explain some expanded use cases on how to create a :py:class:`~aiida.orm.nodes.data.array.bands.BandsData` node and plot the band structure.

.. dropdown:: Creating a ``BandsData`` instance manually

  To start working with the :py:class:`~aiida.orm.nodes.data.array.bands.BandsData` data type we should import it using the ``DataFactory`` and create an object of type ``BandsData``:

  .. code-block:: python

    from aiida.plugins import DataFactory
    BandsData = DataFactory('core.array.bands')
    bands_data = BandsData()

  To import the bands we need to make sure to have two arrays: one containing kpoints and another containing bands.
  The shape of the kpoints object should be ``nkpoints * 3``, while the shape of the bands should be ``nkpoints * nstates``.
  Let's assume the number of kpoints is 12, and the number of states is 5.
  So the kpoints and the bands array will look as follows:

  .. code-block:: python

    import numpy as np
    kpoints = np.array(
          [[0.    , 0.    , 0.    ], # array shape is 12 * 3
          [0.1   , 0.    , 0.1   ],
          [0.2   , 0.    , 0.2   ],
          [0.3   , 0.    , 0.3   ],
          [0.4   , 0.    , 0.4   ],
          [0.5   , 0.    , 0.5   ],
          [0.5   , 0.    , 0.5   ],
          [0.525 , 0.05  , 0.525 ],
          [0.55  , 0.1   , 0.55  ],
          [0.575 , 0.15  , 0.575 ],
          [0.6   , 0.2   , 0.6   ],
          [0.625 , 0.25  , 0.625 ]])

    bands = np.array(
      [[-5.64024889,  6.66929678,  6.66929678,  6.66929678,  8.91047649], # array shape is 12 * 5, where 12 is the size of the kpoints mesh
      [-5.46976726,  5.76113772,  5.97844699,  5.97844699,  8.48186734],  # and 5 is the numbe of states
      [-4.93870761,  4.06179965,  4.97235487,  4.97235488,  7.68276008],
      [-4.05318686,  2.21579935,  4.18048674,  4.18048675,  7.04145185],
      [-2.83974972,  0.37738276,  3.69024464,  3.69024465,  6.75053465],
      [-1.34041116, -1.34041115,  3.52500177,  3.52500178,  6.92381041],
      [-1.34041116, -1.34041115,  3.52500177,  3.52500178,  6.92381041],
      [-1.34599146, -1.31663872,  3.34867603,  3.54390139,  6.93928289],
      [-1.36769345, -1.24523403,  2.94149041,  3.6004033 ,  6.98809593],
      [-1.42050683, -1.12604118,  2.48497007,  3.69389815,  7.07537154],
      [-1.52788845, -0.95900776,  2.09104321,  3.82330632,  7.20537566],
      [-1.71354964, -0.74425095,  1.82242466,  3.98697455,  7.37979746]])

  To insert kpoints and bands in the ``bands_data`` object we should employ ``set_kpoints()`` and ``set_bands()`` methods:

  .. code-block:: python

    bands_data.set_kpoints(kpoints)
    bands_data.set_bands(bands, units='eV')

.. dropdown:: Plotting the band structure

  Next we want to visualize the band structure.
  Before doing so, one thing that we may want to add is the array of kpoint labels:

  .. code-block:: python

    labels = [(0, 'GAMMA'),
              (5, 'X'),
              (6, 'X'),
              (11, 'U')]

    bands_data.labels = labels
    bands_data.show_mpl() # to visualize the bands

  The resulting band structure will look as follows

  .. figure:: include/bands.png

  .. warning::

    As with any AiiDA node, once the ``bands_data`` object is stored (``bands_data.store()``) it won't accept any modifications.

  You may notice that depending on how you assign the kpoints labels the output of the ``show_mpl()`` method looks different.
  Please compare:

  .. code-block:: python

      bands_data.labels = [(0, 'GAMMA'),
                (5, 'X'),
                (6, 'Y'),
                (11, 'U')]
      bands_data.show_mpl()

      bands_data.labels = [(0, 'GAMMA'),
                (5, 'X'),
                (7, 'Y'),
                (11, 'U')]
      bands_data.show_mpl()

  In the first case two neighboring kpoints with ``X`` and ``Y`` labels will look like ``X|Y``, while in the second case they will be separated by a certain distance.
  The logic behind such a difference is the following.
  In the first case the plotting method discovers the two neighboring kpoints and assumes them to be a discontinuity point in the band structure (e.g. Gamma-X|Y-U).
  In the second case the kpoints labelled ``X`` and ``Y`` are not neighbors anymore, so they are plotted with a certain distance between them.
  The intervals between the kpoints on the X axis are proportional to the cartesian distance between them.

.. dropdown:: Dealing with spins

  The ``BandsData`` object can also deal with the results of spin-polarized calculations.
  Two provide different bands for two different spins you should just merge them in one array and import them again using the ``set_bands()`` method:

  .. code-block:: python

      bands_spins = [bands, bands-0.3] # to distinguish the bands of different spins we subtract 0.3 from the second band structure
      bands_data.set_bands(bands_spins, units='eV')
      bands_data.show_mpl()

  Now the shape of the bands array becomes ``nspins * nkpoints * nstates``

.. dropdown:: Exporting

  The :py:class:`~aiida.orm.nodes.data.array.bands.BandsData` data type can be exported with ``verdi data core.bands export``, which accepts a number of formats including (see also below) and additional parameters like ``--prettify-format FORMATNAME``, see valid formats below, or ``--y-min-lim``, ``--y-max-lim`` to specify the ``y``-axis limits.

  The following export formats are available:

  * ``agr``: export a Xmgrace .agr file with the band plot
  * ``agr_batch``: export a Xmgrace batch file together with an independent .dat file
  * ``dat_blocks``: export a .dat file, where each line has a data point (xy) and bands are separated in blocks with empty lines.
  * ``dat_multicolumn``: export a .dat file, where each line has all the values for a given x coordinate: ``x y1 y2 y3 y4 ...`` (``x`` being a linear coordinate along the band path and ``yN`` being the band energies).
  * ``gnuplot``: export a gnuplot file, together with a .dat file.
  * ``json``: export a json file with the bands divided into segments.
  * ``mpl_singlefile``: export a python file that when executed shows a plot using the ``matplotlib`` module.
    All data is included in the same python file as a multiline string containing the data in json format.
  * ``mpl_withjson``: As above, but the json data is stored separately in a different file.
  * ``mpl_pdf``: As above, but after creating the .py file it runs it to export the band structure in a PDF file (vectorial).
    **NOTE**: it requires that you have the python ``matplotlib`` module installed.
    If ``use_latex`` is true, it requires that you have LaTeX installed on your system to typeset the labels, as well as the ``dvipng`` binary.
  * ``mpl_png``: As above, but after creating the .py file it runs it to export the band structure in a PDF file (vectorial).
    **NOTE**: this format has the same dependencies as the ``mpl_pdf`` format above.

  AiiDA provides a number of functions to "prettify" the labels of band structures (if labels are present in the data node), i.e., replace ``GAMMA`` with :math:`\Gamma` or ``K_1`` with :math:`K_{1}` for instance.
  This makes sense for some output formats (e.g. Xmgrace, Gnuplot, matplotlib).

  The prettifier functions are defined as methods of the :py:class:`~aiida.common.utils.Prettifier` class and can be obtained calling :py:meth:`Prettifier.get_prettifiers()<aiida.common.utils.Prettifier.get_prettifiers>`.

  The prettifiers should be chosen depending on two aspects:

  1. How the raw labels are stored in the database.
     Two types exist currently: ``seekpath``, as used in the ``seekpath`` module, where Greek letters are written explicitly (e.g. ``GAMMA``) and underscores are used to indicate a subscript (``K_1``); and the "old" ``simple`` format, where :math:`\Gamma` is indicated with ``G`` and there is no underscore symbol).

  2. Depending on the output format: xmgrace has a specific syntax for Greek letters and subscripts, matplotlib uses LaTeX syntax, etc.

  Most export formats already decide which prettifier is best to use, but if you need
  to change it, you can do it passing the ``prettify_format`` parameter to the
  :py:meth:`~aiida.orm.nodes.data.data.Data.export()` method.
  Valid prettifiers include:

  * ``agr_seekpath``: format for Xmgrace, using ``seekpath`` raw label syntax.
  * ``agr_simple``: format for Xmgrace, using ``simple`` raw label syntax.
  * ``latex_simple``: format for LaTeX (including dollar signs), using ``seekpath`` raw label syntax.
  * ``latex_seekpath``: format for LaTeX (including dollar signs), using ``simple`` raw label syntax.
  * ``gnuplot_simple``: format for GNUPlot (Unicode for Greek letters, LaTeX syntax `without` dollar signs for underscores), using ``seekpath`` raw label syntax.
  * ``gnuplot_seekpath``: format for GNUPlot (Unicode for Greek letters, LaTeX syntax `without` dollar signs for underscores), using ``simple`` raw label syntax.
  * ``pass``: no-op prettifier: leaves all strings unchanged to their raw value.

.. todo::

  .. _topics:data_types:materials:cif:

  title: CifData

  .. _topics:data_types:materials:orbital:

  title: OrbitalData

  .. _topics:data_types:materials:projection:

  title: ProjectionData

Exporting data nodes

Next to the CLI commands described above, each data node has a :py:meth:`~aiida.orm.nodes.data.data.Data.export()` method that allows to export the given data node to file in a variety of available formats, e.g. to pass it to a visualization software.

The :py:meth:`~aiida.orm.nodes.data.data.Data.export()` method asks for a filename, and it will write to file the result. It is possible that more than one file is written (for example, if you produce a gnuplot script, the data will typically be in a different .dat file). The return value of the function is a list of files that have been created.

The list of export formats depends on the specific Data plugin. The export format is typically inferred from the file extension, but if this is not possible (or you want to specify a given format), you can pass an additional fileformat parameter to :py:meth:`~aiida.orm.nodes.data.data.Data.export()`. The list of all valid export formats can be obtained calling Data.get_export_formats() method, that returns a list of strings with all valid formats.

If you don't want to export directly to a file, but want to get simply the content of the file as a string, then you can call the :py:meth:`~aiida.orm.nodes.data.data.Data._exportcontent()` method, passing also a fileformat parameter. The return value is a tuple of length 2: the first element is a string with the content of the "main" file, while the second is a dictionary (possibly empty) with a list of additional files that should be created/needed: the keys are filenames, and the values are the files content.

Adding support for custom data types

The nodes in the :ref:`provenance graph<topics:provenance>` that are the inputs and outputs of processes are referred to as data and are represented by :class:`~aiida.orm.nodes.data.data.Data` nodes. Since data can come in all shapes and forms, the :class:`~aiida.orm.nodes.data.data.Data` class can be sub classed. AiiDA ships with some basic data types such as the :class:`~aiida.orm.nodes.data.int.Int` which represents a simple integer and the :class:`~aiida.orm.nodes.data.dict.Dict`, representing a dictionary of key-value pairs. There are also more complex data types such as the :class:`~aiida.orm.nodes.data.array.array.ArrayData` which can store multidimensional arrays of numbers. These basic data types serve most needs for the majority of applications, but more specific solutions may be useful or even necessary. In the next sections, we will explain :ref:`how a new data type can be created<topics:data_types:plugin:create>` and what :ref:`guidelines<topics:data_types:plugin:design-guidelines>` should ideally be observed during the design process.

Creating a data plugin

Creating a new data type is as simple as creating a new sub class of the base :class:`~aiida.orm.nodes.data.data.Data` class.

from aiida.orm import Data

class NewData(Data):
    """A new data type that wraps a single value."""

Note

To be able to use the new Data plugin, it must be registered using an entry point. See :ref:`What is an entry point?<topics:plugins:entrypoints>` for details.

At this point, our new data type does nothing special. Typically, one creates a new data type to represent a specific type of data. For the purposes of this example, let's assume that the goal of our NewData type is to store a single numerical value. To allow one to construct a new NewData data node with the desired value, for example:

node = NewData(value=5)

we need to allow passing that value to the constructor of the node class. Therefore, we have to override the constructor :meth:`~aiida.orm.nodes.node.Node.__init__`:

from aiida.orm import Data

class NewData(Data):
    """A new data type that wraps a single value."""

    def __init__(self, **kwargs):
        value = kwargs.pop('value')
        super().__init__(**kwargs)
        self.base.attributes.set('value', value)

Warning

For the class to function properly, the signature of the constructor cannot be changed and the constructor of the parent class has to be called. Note also that the constructor is NOT called when the node is loaded from the database afterwards. Hence, one should not rely on initializing instance attributes inside the __init__ itself (here "attributes" does not refer to the data stored in the database, but the normal Python understanding of attributes that class instances have).

Before calling the constructor of the base class, we have to remove the value keyword from the keyword arguments kwargs, because the base class will not expect it and will raise an exception if left in the keyword arguments. The final step is to actually store the value that is passed by the caller of the constructor. A new node has two locations to permanently store any of its properties:

  • the database
  • the file repository

The section on :ref:`design guidelines<topics:data_types:plugin:design-guidelines>` will go into more detail what the advantages and disadvantages of each option are and when to use which. For now, since we are storing only a single value, the easiest and best option is to use the database. Each node has attributes that can store any key-value pair, as long as the value is JSON serializable. By adding the value to the node's attributes, they will be queryable in the database once an instance of the NewData node is stored.

node = NewData(value=5)   # Creating new node instance in memory
node.base.attributes.set('value', 6)  # While in memory, node attributes can be changed
node.store()  # Storing node instance in the database

After storing the node instance in the database, its attributes are frozen, and node.base.attributes.set('value', 7) will fail. By storing the value in the attributes of the node instance, we ensure that that value can be retrieved even when the node is reloaded at a later point in time.

Besides making sure that the content of a data node is stored in the database or file repository, the data type class can also provide useful methods for users to retrieve that data. For example, with the current state of the NewData class, in order to retrieve the value of a stored NewData node, one needs to do:

node = load_node(<IDENTIFIER>)
node.base.attributes.get('value')

In other words, the user of the NewData class needs to know that the value is stored as an attribute with the name 'value'. This is not easy to remember and therefore not very user-friendly. Since the NewData type is a class, we can give it useful methods. Let's introduce one that will return the value that was stored for it:

from aiida.orm import Data

class NewData(Data):
    """A new data type that wraps a single value."""

    ...

    @property
    def value(self):
        """Return the value stored for this instance."""
        return self.base.attributes.get('value')

The addition of the instance property value makes retrieving the value of a NewData node a lot easier:

node = load_node(<IDENTIFIER)
value = node.value

As said before, in addition to their attributes, data types can also store their properties in the file repository. Here is an example for a custom data type that needs to wrap a single text file:

import os
from aiida.orm import Data


class TextFileData(Data):
    """Data class that can be used to wrap a single text file by storing it in its file repository."""

    def __init__(self, filepath, **kwargs):
        """Construct a new instance and set the contents to that of the file.

        :param file: an absolute filepath of the file to wrap
        """
        super().__init__(**kwargs)

        filename = os.path.basename(filepath)  # Get the filename from the absolute path
        self.put_object_from_file(filepath, filename)  # Store the file in the repository under the given filename
        self.base.attributes.set('filename', filename)  # Store in the attributes what the filename is

    def get_content(self):
        """Return the content of the single file stored for this data node.

        :return: the content of the file as a string
        """
        filename = self.base.attributes.get('filename')
        return self.get_object_content(filename)

To create a new instance of this data type and get its content:

node = TextFileData(filepath='/some/absolute/path/to/file.txt')
node.get_content()  # This will return the content of the file

This example is a simplified version of the :class:`~aiida.orm.nodes.data.singlefile.SinglefileData` data class that ships with aiida-core. If this happens to be your use case (or very close to it), it is of course better to use that class, or you can sub class it and adapt it where needed.

The just presented examples for new data types are of course trivial, but the concept is always the same and can easily be extended to more complex custom data types. The following section will provide useful guidelines on how to optimally design new data types.

Database or repository?

When deciding where to store a property of a data type, one has the option to choose between the database and the file repository. All node properties that are stored in the database (such as the attributes), are directly searchable as part of a database query, whereas data stored in the file repository cannot be queried for. What this means is that, for example, it is possible to search for all nodes where a particular database-stored integer attribute falls into a certain value range, but the same value stored in a file within the file repository would not be directly searchable in this way. However, storing large amounts of data within the database comes at the cost of slowing down database queries. Therefore, big data (think large files), whose content does not necessarily need to be queried for, is better stored in the file repository. A data type may safely use both the database and file repository in parallel for individual properties. Properties stored in the database are stored as attributes of the node. The node class has various methods to set these attributes, such as :py:meth:`~aiida.orm.nodes.attributes.NodeAttributes.set` and :py:meth:`~aiida.orm.nodes.attributes.NodeAttributes.set_many`.

Fields

.. versionadded:: 2.6

The attributes of new data types may be exposed to end users by explicitly defining each attribute field under the __qb_fields__ class attribute of the new data class.

from aiida.orm.fields import add_field

class NewData(Data):
    """A new data type."""

    __qb_fields__ = [
        add_field(
          key='frontend_key',
          alias='backend_key',  # optional mapping to a backend key, if different (only allowed for attribute fields)
          dtype=str,
          is_attribute=True,  # signalling if field is an attribute field (default is `True`)
          is_subscriptable=False,  # signalling subscriptability for dictionary fields
          doc='An example field',
        )
    ]

The internal mechanics of aiida.orm.fields will dynamically add frontend_key to the fields attribute of the new data type. The construction of fields follows the rules of inheritance, such that other than its own fields, NewData.fields will also inherit the fields of its parents, following the inheritance tree up to the root Entity ancestor. This enhances the usability of the new data type, for example, allowing the end user to programmatically define :ref:`filters<how-to:query:filters:programmatic>` and :ref:`projections<how-to:query:projections:programmatic>` when using AiiDA's :py:class:`~aiida.orm.querybuilder.QueryBuilder`.

Note

:py:meth:`~aiida.orm.fields.add_field` will return the flavor of :py:class:`~aiida.orm.fields.QbField` associated with the type of the field defined by the dtype argument, which can be given as a primitive type or a typing-module type hint, e.g. Dict[str, Any]. When using the data class in queries, the logical operators available to the user will depend on the flavor of :py:class:`~aiida.orm.fields.QbField` assigned to the field.