forked from duartegroup/autodE
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Resolve conflicts with v1.4.0 * Start removal of dep functions [skip actions] * Add force constant [skip actions] * NEB refactoring * Fix units for div mul * Update changelog * Simplify and add comment * Remove more deprecated functions [skip actions] * Fix tests * Ignore type checking in tests + more tests * More typing * More typing and update lint workflow * Add some tests * Typing and benchmark script exclusion * Add test * Pin in requirements file and use mamba --------- Co-authored-by: Shoubhik Maiti <[email protected]>
- Loading branch information
1 parent
e05752d
commit f9fb7a0
Showing
142 changed files
with
1,989 additions
and
1,154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
shell: bash -l {0} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
|
@@ -32,7 +32,7 @@ jobs: | |
run: | | ||
cd doc | ||
make html | ||
touch _build/html/.nojekyll | ||
touch _build/html/.nojekyll | ||
- name: Deploy | ||
uses: JamesIves/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,11 +14,10 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Black | ||
uses: psf/black@stable | ||
- name: Run pre-commit | ||
uses: pre-commit/[email protected] | ||
with: | ||
options: "--check --verbose" | ||
version: "~= 22.0" | ||
extra_args: --all-files | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,4 @@ tests/*.xyz | |
*.pyc | ||
.autode_calculations | ||
tests/initial_path/* | ||
.mypy_cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v3.2.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: mixed-line-ending | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 22.10.0 | ||
hooks: | ||
- id: black | ||
language_version: python3.9 | ||
language_version: python3 | ||
|
||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: v1.0.1 | ||
hooks: | ||
- id: mypy | ||
exclude: "tests/|doc/|examples/" | ||
args: [--ignore-missing-imports] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Contributing to autodE | ||
|
||
Contributions in any form are very much welcome. To make managing these | ||
easier, we kindly ask that you follow the guidelines outlined | ||
easier, we kindly ask that you follow the guidelines outlined | ||
[here](https://duartegroup.github.io/autodE/dev/contributing.html). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
*** | ||
## Introduction | ||
|
||
**autodE** is a Python module initially designed for the automated calculation of reaction profiles from SMILES strings of | ||
**autodE** is a Python module initially designed for the automated calculation of reaction profiles from SMILES strings of | ||
reactant(s) and product(s). Current features include: transition state location, conformer searching, atom mapping, | ||
Python wrappers for a range of electronic structure theory codes, SMILES parsing, association complex generation, and | ||
reaction profile generation. | ||
|
@@ -34,8 +34,8 @@ see the [installation guide](https://duartegroup.github.io/autodE/install.html) | |
|
||
## Usage | ||
|
||
Reaction profiles in **autodE** are generated by initialising _Reactant_ and _Product_ objects, | ||
generating a _Reaction_ from those and invoking _calculate_reaction_profile()_. | ||
Reaction profiles in **autodE** are generated by initialising _Reactant_ and _Product_ objects, | ||
generating a _Reaction_ from those and invoking _calculate_reaction_profile()_. | ||
For example, to calculate the profile for a 1,2 hydrogen shift in a propyl radical: | ||
|
||
```python | ||
|
@@ -56,19 +56,19 @@ additional documentation. | |
|
||
## Development | ||
|
||
There is a [slack workspace](https://autodeworkspace.slack.com) for development and discussion - please | ||
[email](mailto:[email protected]?subject=autodE%20slack) to be added. Pull requests are | ||
There is a [slack workspace](https://autodeworkspace.slack.com) for development and discussion - please | ||
[email](mailto:[email protected]?subject=autodE%20slack) to be added. Pull requests are | ||
very welcome but must pass all the unit tests prior to being merged. Please write code and tests! | ||
See the [todo list](https://github.com/duartegroup/autodE/projects/1) for features on the horizon. | ||
Bugs and feature requests should be raised on the [issue page](https://github.com/duartegroup/autodE/issues). | ||
See the [todo list](https://github.com/duartegroup/autodE/projects/1) for features on the horizon. | ||
Bugs and feature requests should be raised on the [issue page](https://github.com/duartegroup/autodE/issues). | ||
|
||
> **_NOTE:_** We'd love more contributors to this project! | ||
> **_NOTE:_** We'd love more contributors to this project! | ||
|
||
## Citation | ||
|
||
If **autodE** is used in a publication please consider citing the [paper](https://doi.org/10.1002/anie.202011941): | ||
|
||
``` | ||
@article{autodE, | ||
doi = {10.1002/anie.202011941}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.