Skip to content

Commit

Permalink
Merge pull request #18 from QuantumChemist/main
Browse files Browse the repository at this point in the history
write jobflow tutorial
  • Loading branch information
JaGeo authored Jul 1, 2024
2 parents f33ebb8 + a188487 commit 9905f45
Show file tree
Hide file tree
Showing 3 changed files with 892 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ __pycache__/
# C extensions
*.so

#jobflow tmp output dirs
job*/

# Distribution / packaging
.Python
build/
Expand All @@ -25,6 +28,7 @@ share/python-wheels/
.installed.cfg
*.egg
MANIFEST
.idea

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
2 changes: 1 addition & 1 deletion adis_tools/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
def parse_pw(xml_file):
"""Parse a Quantum Espresso XML output file."""

xml_dict = XMLSchema(files(schemas) / 'qes_230310.xsd').to_dict(xml_file)
xml_dict = XMLSchema(str(files(schemas) / 'qes_230310.xsd')).to_dict(xml_file)

parsed_results = {}

Expand Down
888 changes: 887 additions & 1 deletion jobflow.ipynb

Large diffs are not rendered by default.

0 comments on commit 9905f45

Please sign in to comment.