.. _running: Running ******* The ESMValCore package provides the ``esmvaltool`` command line tool, which can be used to run a :doc:`recipe <../recipe/index>`. To list the available commands, run .. code:: bash esmvaltool --help It is also possible to get help on specific commands, e.g. .. code:: bash esmvaltool run --help will display the help message with all options for the ``run`` command. To run a recipe, call ``esmvaltool run`` with the path to the desired recipe: .. code:: bash esmvaltool run recipe_example.yml The ``esmvaltool run recipe_example.yml`` command will first look if ``recipe_example.yml`` is the path to an existing file. If this is the case, it will run that recipe. If you have :ref:`ESMValTool installed `, it will look if the name matches one of the recipes in your ESMValTool installation directory, in the subdirectory `recipes `__ and run that. .. note:: There is no ``recipe_example.yml`` shipped with either ESMValCore or ESMValTool. If you would like to try out the command above, replace ``recipe_example.yml`` with the path to an existing recipe, e.g. `examples/recipe_python.yml `_ if you have the ESMValTool package installed. To work with installed recipes, the ESMValTool package provides the ``esmvaltool recipes`` command, see :ref:`esmvaltool:recipes_command`. If the configuration file is not in the default location ``~/.esmvaltool/config-user.yml``, you can pass its path explicitly: .. code:: bash esmvaltool run --config_file /path/to/config-user.yml recipe_example.yml It is also possible to explicitly change values from the config file using flags: .. code:: bash esmvaltool run --argument_name argument_value recipe_example.yml To automatically download the files required to run a recipe from ESGF, set ``search_esgf`` to ``when_missing`` (use local files whenever possible) or ``always`` (always search ESGF for latest version of files and only use local data if it is the latest version) in the :ref:`user configuration file` or run the tool with the corresponding commands .. code:: bash esmvaltool run --search_esgf=when_missing recipe_example.yml or .. code:: bash esmvaltool run --search_esgf=always recipe_example.yml This feature is available for projects that are hosted on the ESGF, i.e. CMIP3, CMIP5, CMIP6, CORDEX, and obs4MIPs. To control the strictness of the CMOR checker and the checks during concatenation on auxiliary coordinates, supplementary variables, and derived coordinates, use the flag ``--check_level``: .. code:: bash esmvaltool run --check_level=relaxed recipe_example.yml Possible values are: - `ignore`: all errors will be reported as warnings. Concatenation will be performed without checks. - `relaxed`: only fail if there are critical errors. Concatenation will be performed without checks. - `default`: fail if there are any errors. - `strict`: fail if there are any warnings. To re-use pre-processed files from a previous run of the same recipe, you can use .. code:: bash esmvaltool run recipe_example.yml --resume_from ~/esmvaltool_output/recipe_python_20210930_123907 Multiple directories can be specified for re-use, make sure to quote them: .. code:: bash esmvaltool run recipe_example.yml --resume_from "~/esmvaltool_output/recipe_python_20210930_101007 ~/esmvaltool_output/recipe_python_20210930_123907" The first preprocessor directory containing the required data will be used. This feature can be useful when developing new diagnostics, because it avoids the need to re-run the preprocessor. Another potential use case is running the preprocessing part of a recipe on one or more machines that have access to a lot of data and then running the diagnostics on a machine without access to data. To run only the preprocessor tasks from a recipe, use .. code:: bash esmvaltool run recipe_example.yml --remove_preproc_dir=False --run_diagnostic=False .. note:: Only preprocessing :ref:`tasks ` that completed successfully can be re-used with the ``--resume_from`` option. Preprocessing tasks that completed successfully, contain a file called :ref:`metadata.yml ` in their output directory. To run a reduced version of the recipe, usually for testing purpose you can use .. code:: bash esmvaltool run --max_datasets=NDATASETS --max_years=NYEARS recipe_example.yml In this case, the recipe will limit the number of datasets per variable to NDATASETS and the total amount of years loaded to NYEARS. They can also be used separately. Note that diagnostics may require specific combinations of available data, so use the above two flags at your own risk and for testing purposes only. To run a recipe, even if some datasets are not available, use .. code:: bash esmvaltool run --skip_nonexistent=True recipe_example.yml It is also possible to select only specific diagnostics to be run. To tun only one, just specify its name. To provide more than one diagnostic to filter use the syntax 'diag1 diag2/script1' or '("diag1", "diag2/script1")' and pay attention to the quotes. .. code:: bash esmvaltool run --diagnostics=diagnostic1 recipe_example.yml .. note:: ESMValTool command line interface is created using the Fire python package. This package supports the creation of completion scripts for the Bash and Fish shells. Go to https://google.github.io/python-fire/using-cli/#python-fires-flags to learn how to set up them.