Skip to main content

A plugin to interface AIMAll with AiiDA

Project description

ci Coverage Status Documentation Status PyPI version

aiida-aimall

A plugin to interface AIMAll with AiiDA

Repository contents

  • .github/: Github Actions configuration
  • aiida_aimall/: The main source code of the plugin package
    • data.py: A new AimqbParameters data class, used as input to the AimqbCalculation CalcJob class
    • calculations.py: A new AimqbCalculation CalcJob class
    • parsers.py: Two parsers (AimqbBaseParser and AimqbGroupParser) for AimqbCalculation results
    • workchains/: New WorkChains.
      • calcfunctions.py: calcfunctions that are used in the workchains
      • input.py: BaseInputWorkChain that is used in other workchains to validate multiple input options
      • param_parts.py: SmilesToGaussianWorkChain and AIMAllReorWorkChain: two workchains representing individual steps of the SubstituentParameterWorkchain
      • qc_programs.py: QMToAIMWorkChain and GaussianToAIMWorkChain linking quantum chemical software output to an AIMQB calculation
      • subparam.py: SubstituentParameterWorkchain to automate calculation substituent properties in a multistep calculation.
  • 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
  • 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
  • .isort.cfg: Configuration to make isort and black precommit actions compatible
  • LICENSE: License for your plugin
  • README.md: This file
  • pyproject.toml: Python package metadata for registration on PyPI and the AiiDA plugin registry (including entry points)

Features

Feature specificity

Many of the workflows provided are specific to my field of study, but the calculations and parsers should be widely useful. Again, as many things designed here were specific to my usage, there are some quirks that must be used at this time, but as I progress with this, I'll endeavour to replace them as optional parts.

  • Many calculations and parsers store results in groups. I have used this, due to my usage of the FromGroupSubmissionController from aiida-submission-controller. I wrote for wfx files to be stored in a group in a Gaussian calculation because then a submission controller looks for wfx files in that group.
    • What this means for the general user is that currently, some nodes are going to be stored in groups, and some group labels are to be provided to certain CalcJobs
  • For similar reasons as above, many Parsers/CalcJobs add extras to the node, typically SMILES in my case
    • Some calculations then, require an extra label (frag_label or fragment_label) to be provided as input to tag the output

Feature List

  • AimqbParameters Data class to validate command line parameters used to run AIMAll calculations

    AimqbParameters = DataFactory('aimall.aimqb')
    aim_params = AimqbParameters(parameter_dict={"naat": 2, "nproc": 2, "atlaprhocps": True})
    
    • will check for instance, that the value supplied for naat (number of atoms at a time) is an integer.
    • Most of the options provided at AIMQB Command Line are defined and validated
  • Run an AIMQB calculation using a valid starting file format (WFN/WFX/FCHK as SinglefileData)

    AimqbCalculation = CalculationFactory('aimall.aimqb')
    builder = AimqbCalculation.get_builder()
    builder.parameters = aim_params
    builder.file = SinglefileData('/absolute/path/to/file')
    # Alternatively, if you have file stored as a string:
    # builder.file = SinglefileData(io.BytesIO(wfx_file_string.encode()))
    submit(builder)
    

Documentation

Documentation is hosted at ReadTheDocs.

Installation

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

If you are using WorkChains that run GaussianCalculations on some computers like Apple M1s, the current release v1.8.1 may result in an error in due to a space in the computer name. The master branch of cclib has been updated to fix this bug. The direct dependency is not allowed on PyPi. If you are in the situation, you can fix it by installing the current version of cclib from the master branch.

(env) pip install git+https://github.com/cclib/cclib

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 guidelines for contributing for more information.

Copyright notice

The testing and documentation 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))

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-1.0.4.tar.gz (28.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aiida_aimall-1.0.4-py3-none-any.whl (32.2 kB view details)

Uploaded Python 3

File details

Details for the file aiida_aimall-1.0.4.tar.gz.

File metadata

  • Download URL: aiida_aimall-1.0.4.tar.gz
  • Upload date:
  • Size: 28.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiida_aimall-1.0.4.tar.gz
Algorithm Hash digest
SHA256 dceb7927317789c786de5cd98cf559de39d2de5887e2ac2eb094c9db1ae16cba
MD5 552ef38fb39857141054c4d895c32c47
BLAKE2b-256 6b8d5e3e9846319924c815c5a9816dc61f8496ab244e7bada867f12718a0b6f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiida_aimall-1.0.4.tar.gz:

Publisher: publish-on-pypi.yml on kmlefran/aiida-aimall

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiida_aimall-1.0.4-py3-none-any.whl.

File metadata

  • Download URL: aiida_aimall-1.0.4-py3-none-any.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiida_aimall-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 49523cf1e85e1ef59f8cae126f55783322103bd0e126d03d0efcd681c56c31d0
MD5 95cfb9b86dc430dc9c27a17251a649a3
BLAKE2b-256 90b2755c99ac23aa1b00c7686e4c31eec55b34ef8cf69dfbd227ca30ec65759f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiida_aimall-1.0.4-py3-none-any.whl:

Publisher: publish-on-pypi.yml on kmlefran/aiida-aimall

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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