Skip to main content

A plugin to interface AIMAll with AiiDA

Project description

ci Coverage Status Docs status PyPI version

Copyright notice

This repository contains modified versions of the calculations and parsers presented in Aiida-Gaussian. Copyright (c) 2020 Kristjan Eimre. The modifications basically amount to adding the wfx file to the retrieved nodes and adding some groups/extras to calculation output.

Also, the (incomplete) testing framework is heavily influenced by the infrastructure presented in aiida-quantumespresso. Copyright (c), 2015-2020, ECOLE POLYTECHNIQUE FEDERALE DE LAUSANNE (Theory and Simulation of Materials (THEOS) and National Centre for Computational Design and Discovery of Novel Materials (NCCR MARVEL))

aiida-aimall

A plugin to interface AIMAll with AiiDA

This plugin is the default output of the AiiDA plugin cutter, intended to help developers get started with their AiiDA plugins.

Repository contents

  • .github/: Github Actions configuration
    • ci.yml: runs tests, checks test coverage and builds documentation at every new commit
    • publish-on-pypi.yml: automatically deploy git tags to PyPI - just generate a PyPI API token for your PyPI account and add it to the pypi_token secret of your github repository
  • aiida_aimall/: The main source code of the plugin package
    • data/: A new AimqbParameters data class, used as input to the AimqbCalculation CalcJob class
    • calculations.py: A new AimqbCalculation CalcJob class, and GaussianWFXCalculation, a modified version of GaussianCalculation from AiiDA Gaussian
    • cli.py: Extensions of the verdi data command line interface for the AimqbParameters class
    • parsers.py: A new Parser for the AimqbCalculation, and GaussianWFXParser, a modified version of GaussianBaseParser from AiiDA Gaussian
    • workchains.py: New WorkChains.
      • MultiFragmentWorkChain to fragment molecules using cml files from the Retrievium database and submit Gaussian calculations for the fragments using functions in frag_functions from subproptools Github
      • G16OptWorkchain to take output from MultiFragmentWorkChain and submit Gaussian optimization calculations
      • AimAllReorWorkChain to run AimqbCalculation on output from GaussianWFXCalculations, then reorient to coordinate systems defined in subreor from subproptools Github
  • controllers.py: Workflow controllers to limit number of running jobs on localhost computers.
    • AimReorSubmissionController to control AimReorWorkChains. These use parent_group_label for the wavefunction file nodes from GaussianWFXCalculations
    • AimAllSubmissionController to control AimqbCalculations``. These use parent_group_labelfor the wavefunction file nodes fromGaussianWFXCalculation`s
    • GaussianSubmissionController to control GaussianWFXCalculations. This is mostly intended to have a arbitrarily large number of max concurrents and scan for output structures of AimReorWorkchains to submit to a remote cluster
  • docs/: Source code of documentation for Read the Docs
  • examples/: An example of how to submit a calculation using this plugin
  • tests/: Basic regression tests using the pytest framework (submitting a calculation, ...). Install pip install -e .[testing] and run pytest.
  • .gitignore: Telling git which files to ignore
  • .pre-commit-config.yaml: Configuration of pre-commit hooks that sanitize coding style and check for syntax errors. Enable via pip install -e .[pre-commit] && pre-commit install
  • .readthedocs.yml: Configuration of documentation build for Read the Docs
  • LICENSE: License for your plugin
  • README.md: This file
  • conftest.py: Configuration of fixtures for pytest
  • pyproject.toml: Python package metadata for registration on PyPI and the AiiDA plugin registry (including entry points)

See also the following video sequences from the 2019-05 AiiDA tutorial:

For more information, see the developer guide of your plugin.

Features

  • Add input files using SinglefileData:

    SinglefileData = DataFactory('singlefile')
    inputs['file1'] = SinglefileData(file='/path/to/file1')
    inputs['file2'] = SinglefileData(file='/path/to/file2')
    
  • Specify command line options via a python dictionary and DiffParameters:

    d = { 'ignore-case': True }
    DiffParameters = DataFactory('aimall')
    inputs['parameters'] = DiffParameters(dict=d)
    
  • DiffParameters dictionaries are validated using voluptuous. Find out about supported options:

    DiffParameters = DataFactory('aimall')
    print(DiffParameters.schema.schema)
    

Installation

pip install aiida-aimall
verdi quicksetup  # better to set up a new profile
verdi plugin list aiida.calculations  # should now show your calclulation plugins

Usage

Here goes a complete example of how to submit a test calculation using this plugin.

A quick demo of how to submit a calculation:

verdi daemon start     # make sure the daemon is running
cd examples
./example_01.py        # run test calculation
verdi process list -a  # check record of calculation

The plugin also includes verdi commands to inspect its data types:

verdi data aimall list
verdi data aimall export <PK>

Development

git clone https://github.com/kmlefran/aiida-aimall .
cd aiida-aimall
pip install --upgrade pip
pip install -e .[pre-commit,testing]  # install extra dependencies
pre-commit install  # install pre-commit hooks
pytest -v  # discover and run all tests

See the developer guide for more information.

License

MIT

Contact

kgagnon@lakeheadu.ca

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiida_aimall-0.4.1.tar.gz (22.6 kB view hashes)

Uploaded Source

Built Distribution

aiida_aimall-0.4.1-py3-none-any.whl (22.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page