aiida-aimall: A Python package for automating workflows for AIMAll software
aiida-aimall: A Python package for automating workflows for AIMAll software - Published in JOSS (2026)
Science Score: 87.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
✓DOI references
Found 1 DOI reference(s) in JOSS metadata -
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
✓JOSS paper metadata
Published in Journal of Open Source Software
Repository
Basic Info
- Host: GitHub
- Owner: kmlefran
- License: mit
- Language: Python
- Default Branch: main
- Size: 12.6 MB
Statistics
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
- Releases: 11
Metadata Files
README.md
aiida-aimall
A plugin to interface AIMAll with AiiDA
Repository contents
.github/: Github Actions configurationworkflows/ci.yml: runs tests, checks test coverage and continuous integration at every new commitpublish-on-pypi.yml: automatically deploy git tags to PyPI - just generate a PyPI API token for your PyPI account and add it to thepypi_tokensecret of your github repositoryconfig/config files for testing/docs environmentcode-aim.yamlconfig file for building precommit and test envscode-gwfx.yamlconfig file for building precommit and test envsprofile.yamlconfig file for aiida profilelocalhost-config.yamlconfig file for localhost computerlocalhost-setup.yamlsetup file for localhost computer
aiida_aimall/: The main source code of the plugin packagedata.py: A newAimqbParametersdata class, used as input to theAimqbCalculationCalcJobclasscalculations.py: A newAimqbCalculationCalcJobclassparsers.py: Two parsers (AimqbBaseParserandAimqbGroupParser) forAimqbCalculationresultsworkchains/: NewWorkChains.calcfunctions.py:calcfunctions that are used in the workchainsinput.py:BaseInputWorkChainthat is used in other workchains to validate multiple input optionsparam_parts.py:SmilesToGaussianWorkChainandAIMAllReorWorkChain: two workchains representing individual steps of theSubstituentParameterWorkchainqc_programs.py:QMToAIMWorkChainandGaussianToAIMWorkChainlinking quantum chemical software output to an AIMQB calculationsubparam.py:SubstituentParameterWorkchainto automate calculation substituent properties in a multistep calculation.
controllers.py: Workflow controllers to limit number of running jobs on localhost computers.AimReorSubmissionControllerto controlAimReorWorkChains. These useparent_group_labelfor the wavefunction file nodes fromGaussianWFXCalculationsAimAllSubmissionControllerto controlAimqbCalculations. These useparentgrouplabelfor the wavefunction file nodes fromGaussianWFXCalculation`sGaussianSubmissionControllerto controlGaussianWFXCalculations. This is mostly intended to have a arbitrarily large number of max concurrents and scan for output structures ofAimReorWorkchains to submit to a remote cluster
docs/: Source code of documentation for Read the Docstests/: Basic regression tests using the pytest framework (submitting a calculation, ...). Installpip install -e .[testing]and runpytest.conftest.py: Configuration of fixtures for 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 viapip 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 compatibleLICENSE: License for your pluginREADME.md: This filepyproject.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 (fraglabel or fragmentlabel) to be provided as input to tag the output
Feature List
AimqbParameters Data class to validate command line parameters used to run AIMAll calculations
python 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) ```python AimqbCalculation = CalculationFactory('aimall.aimqb') builder = AimqbCalculation.getbuilder() builder.parameters = aimparams builder.file = SinglefileData('/absolute/path/to/file')
Alternatively, if you have file stored as a string:
builder.file = SinglefileData(io.BytesIO(wfxfilestring.encode()))
submit(builder) ```
Documentation
Documentation is hosted at ReadTheDocs.
Installation
shell
(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.
shell
(env) pip install git+https://github.com/cclib/cclib
Development
shell
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
Owner
- Login: kmlefran
- Kind: user
- Repositories: 1
- Profile: https://github.com/kmlefran
JOSS Publication
aiida-aimall: A Python package for automating workflows for AIMAll software
Authors
Tags
AiiDA Quantum Theory of Atoms in Molecules AIMAll Computational chemistryGitHub Events
Total
- Release event: 2
- Pull request event: 4
- Issues event: 1
- Issue comment event: 2
- Push event: 36
- Create event: 2
Last Year
- Release event: 2
- Pull request event: 4
- Issues event: 1
- Issue comment event: 2
- Push event: 32
- Create event: 2
Committers
Last synced: 5 months ago
Issues and Pull Requests
Last synced: 3 months ago
All Time
- Total issues: 2
- Total pull requests: 21
- Average time to close issues: N/A
- Average time to close pull requests: about 5 hours
- Total issue authors: 1
- Total pull request authors: 1
- Average comments per issue: 0.0
- Average comments per pull request: 0.0
- Merged pull requests: 20
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 1
- Pull requests: 2
- Average time to close issues: N/A
- Average time to close pull requests: 3 minutes
- Issue authors: 1
- Pull request authors: 1
- Average comments per issue: 0.0
- Average comments per pull request: 0.0
- Merged pull requests: 2
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- kmlefran (2)
Pull Request Authors
- kmlefran (21)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- pypi 294 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 15
- Total maintainers: 1
pypi.org: aiida-aimall
A plugin to interface AIMAll with AiiDA
- Homepage: https://aiida-aimall.readthedocs.io
- Documentation: https://aiida-aimall.readthedocs.io
- License: MIT License
-
Latest release: 1.0.5
published 3 months ago
Rankings
Maintainers (1)
Dependencies
- actions/cache v1 composite
- actions/checkout v2 composite
- actions/setup-python v2 composite
- postgres 10 docker
- rabbitmq latest docker
- actions/checkout v4 composite
- actions/download-artifact v3 composite
- actions/setup-python v4 composite
- actions/upload-artifact v3 composite
- pypa/gh-action-pypi-publish release/v1 composite
- sigstore/gh-action-sigstore-python v1.2.3 composite
- aiida-core >=2.0,<3
- aiida-dataframe *
- aiida-submission-controller *
- ase *
- cclib *
- multiprocess *
- pydantic *
- voluptuous *
- aiida-core *
- aiida-dataframe *
- aiida-submission-controller *
- ase *
- cclib *
- furo *
- group_decomposition *
- markupsafe <2.1
- multiprocess *
- numpy *
- pandas *
- pydantic *
- sphinx *
- sphinx-rtd-theme *
- sphinxcontrib-contentui *
- sphinxcontrib-details-directive *
- subproptools *
- voluptuous *
