Skip to content

Commit

Permalink
Modify JMesPath quotation symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
ndaelman committed Sep 12, 2024
1 parent 03a24f0 commit a2c5952
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/nomad_parser_vasp/schema_packages/vasp_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@
# note: vasprun.xml has many meta fields, explaining field semantics
Simulation.m_def.m_annotations['xml'] = MappingAnnotationModel(path="modeling")

Simulation.program.m_annotations['xml'] = MappingAnnotationModel(path="modeling.generator")
Simulation.program.m_annotations['xml'] = MappingAnnotationModel(path=".generator")

Simulation.model_method.m_annotations['xml'] = MappingAnnotationModel(
path="modeling.parameters"
path=".parameters"
)

Simulation.model_system.m_annotations['xml'] = MappingAnnotationModel(
path=".calculation"
)

ModelSystem.cell.m_annotations['xml'] = MappingAnnotationModel(path="modeling.structure")
ModelSystem.cell.m_annotations['xml'] = MappingAnnotationModel(path=".structure")

Simulation.outputs.m_annotations['xml'] = MappingAnnotationModel(path=".calculation")

Expand Down

0 comments on commit a2c5952

Please sign in to comment.