Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
709504c
yank deprecated builders
tsmathis Dec 4, 2025
431222c
new vasp builders
tsmathis Dec 4, 2025
ba2123b
simple map builders
tsmathis Dec 4, 2025
0ca40d1
corrected entries builder
tsmathis Dec 4, 2025
6f44853
draft similarity builder
esoteric-ephemera Dec 11, 2025
232627d
add snl schema for experimental databases
esoteric-ephemera Dec 12, 2025
53df4f0
precommit / typos galore
esoteric-ephemera Dec 12, 2025
2759476
add extra fields to DB SNLs to accommodate user / mp-complete
esoteric-ephemera Dec 23, 2025
85f82e8
draft provenance builder
esoteric-ephemera Dec 23, 2025
bd53be3
rework m3gnet featurization to be pickleable
Jan 2, 2026
033dc8a
yank deprecated builders
tsmathis Dec 4, 2025
0f0f79a
new vasp builders
tsmathis Dec 4, 2025
10e51dc
simple map builders
tsmathis Dec 4, 2025
cbd893e
corrected entries builder
tsmathis Dec 4, 2025
4399598
thermo builder
tsmathis Dec 5, 2025
861bc86
Create `emmet.core.connectors` for external DBs, migrate builders to …
esoteric-ephemera Jan 9, 2026
1e5315e
precommit + syntax corrections
esoteric-ephemera Jan 9, 2026
850cbcb
resolve merge conflicts
esoteric-ephemera Jan 9, 2026
af97999
resolve merge conflicts
esoteric-ephemera Jan 9, 2026
090696f
small updates to client syntax
esoteric-ephemera Jan 13, 2026
da3cdb7
oxi states builder - cast species to str
tsmathis Jan 15, 2026
1693611
switch to custom structure type for base builder input model
tsmathis Jan 15, 2026
decc388
remove influence from magnetic configuration on BVAnalyzer for oxi st…
tsmathis Jan 15, 2026
5ab642c
phase diagram - cast list[ndarray] correctly for pyarrow during seria…
tsmathis Mar 2, 2026
97c1e5b
doc str - rm this this
tsmathis Mar 3, 2026
96d359c
default padlen for IdentifierType during (de)serialization
tsmathis Mar 3, 2026
a173b9e
IdentifierType builder
tsmathis Mar 3, 2026
63a71d8
no 'mp-' on task_id
tsmathis Mar 3, 2026
b2d50f9
id coercion for materialsdoc + entry types
tsmathis Mar 4, 2026
6d2c83a
extra id coercion for entries
tsmathis Mar 4, 2026
d9744b5
strip extraneous fields from legacy validation model
tsmathis Mar 4, 2026
9b42e21
safer func execution
tsmathis Mar 6, 2026
39eadd7
autofill builder_meta, don't inherit
tsmathis Mar 7, 2026
e387275
magnetism builder
tsmathis Mar 7, 2026
e232107
safe call to get_conventional_structure -> propagate failure up safely
tsmathis Mar 7, 2026
0c7c0ee
oxi-states, chemenv should inherit builder_meta
tsmathis Mar 7, 2026
6f6d1d1
magnetism origins should be list of origins
tsmathis Mar 9, 2026
c3e5158
Merge branch 'new-builders' into spb
tsmathis Mar 10, 2026
41a5390
Merge pull request #1394 from materialsproject/spb
tsmathis Mar 10, 2026
ee4fab3
magnetism docstr
tsmathis Mar 12, 2026
e0b07a3
cast tz to UTC for arrow schemas
tsmathis Mar 11, 2026
ef1abb1
electronic structure builder
tsmathis Mar 10, 2026
a7da189
drop equivalent_labels from electronic structure data
tsmathis Mar 12, 2026
c37e63e
structure not needed for ranking bs or dos, minor refactors for origi…
tsmathis Mar 12, 2026
ac69dbc
add unknown variant to BSPathType enum
tsmathis Mar 13, 2026
163c27b
add run_type to BandTheoryBase
tsmathis Mar 13, 2026
96d0a7e
incorrect nesting on electronic structure shims
tsmathis Mar 17, 2026
d357b40
refactor misc missing attrs & incorrect access patterns
tsmathis Mar 17, 2026
ad556fd
make ranking calc struct fields optional
tsmathis Mar 17, 2026
3f19099
bs sorting resilient to nulls
tsmathis Mar 17, 2026
6706b77
correct typing for DosShim identifier
tsmathis Mar 17, 2026
1aedd0f
add filter_map generic
tsmathis Mar 18, 2026
19a785a
absorption builder
tsmathis Mar 19, 2026
4d26e6d
more sane type grouping for TypedBandDict
tsmathis Mar 19, 2026
3a8c0c9
better kwarg propagation for filter_map and electronic structure builder
tsmathis Mar 19, 2026
9d0943f
minor provenance updates
tsmathis Mar 19, 2026
fcb7aa1
refactor SummaryDoc + summary builder
tsmathis Mar 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
862 changes: 0 additions & 862 deletions emmet-builders/emmet/builders/abinit/phonon.py

This file was deleted.

226 changes: 0 additions & 226 deletions emmet-builders/emmet/builders/abinit/sound_velocity.py

This file was deleted.

20 changes: 20 additions & 0 deletions emmet-builders/emmet/builders/base.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
from pydantic import Field

from emmet.core.base import EmmetBaseModel
from emmet.core.types.pymatgen_types.structure_adapter import StructureType
from emmet.core.types.typing import IdentifierType


class BaseBuilderInput(EmmetBaseModel):
"""
Document model with the minimum inputs required
to run builders that only require a Pymatgen structure
object for property analysis.

A material_id and builder_meta information may be optionally
included.
"""

deprecated: bool = Field(False)
material_id: IdentifierType | None = Field(None)
structure: StructureType
Empty file.
77 changes: 0 additions & 77 deletions emmet-builders/emmet/builders/feff/xas.py

This file was deleted.

Loading