-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New features for pathway identification and charge barrier analysis #149
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
d3afe54
full pathway identification
jmmshn 3957a4c
full pathway identification
jmmshn 825086f
full pathway identification
jmmshn 9f60ff4
changed import
jmmshn d557359
added precommit
jmmshn b0b1f51
added test for weird Mg case
jmmshn 4bb0d00
fixed tests
jmmshn 4ef52d2
added db parsing
jmmshn f843eaf
added db parsing
jmmshn 2934f50
working periodic dijkstras
jmmshn d019f26
removed db specific modules
jmmshn bdeff6e
typo
jmmshn 0bf36e4
same typo
jmmshn ee4f4a9
updated based on PR comments
jmmshn ba2770c
ignore vscode
jmmshn a523a9e
small bug fix
jmmshn 5e7e369
small bug fix
jmmshn ce690d6
small bug fix
jmmshn 38e53b3
more clear test case explanation
jmmshn 656e6c5
test modification
acrutt 9a1b3dd
Merge pull request #1 from acrutt/master
jmmshn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,5 @@ distribute-0.6.34-py2.7.egg | |
distribute-0.6.34.tar.gz | ||
|
||
pymatgen_diffusion/\.vscode/ | ||
|
||
.vscode/ |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.3.0 | ||
hooks: | ||
- id: check-yaml | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
- id: flake8 | ||
args: ["--max-line-length=120"] | ||
- repo: https://github.com/psf/black | ||
rev: 20.8b1 # Replace by any tag/version: https://github.com/psf/black/tags | ||
hooks: | ||
- id: black | ||
language_version: python3 # Should be a command that runs python3.6+ |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am unclear what this file is for or why it needs to be committed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file is to help format the changed files prior to committing
Committing this ensures that the code changes will pass most linting checks after a push.
We use this for pymatgen:
https://github.com/materialsproject/pymatgen/blob/master/.pre-commit-config.yaml
If you do not install the hook it does nothing but if it's installed it's just a nice little creature comfort thing for developers.