adapter¶
EntryAdapter
¶
Base class for lazy resource entry adapters.
Attributes:
Name | Type | Description |
---|---|---|
ENTRY_RESOURCE |
type[EntryResource]
|
Entry resource to store entry as. |
_type_converters |
dict[str, Callable]
|
Dictionary of valid conversion types for entry. |
_type_ingesters |
dict[str, Callable]
|
Dictionary of valid ingestion types mapped to ingestion functions. |
_type_ingesters_by_type |
dict[str, type]
|
Dictionary mapping the keys of |
as_<_type_converters> |
dict[str, type]
|
Convert entry to a type listed in |
from_<_type_converters> |
dict[str, type]
|
Convert an external type to the corresponding OPTIMADE model. |
Source code in optimade/adapters/base.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
|
entry: EntryResource
property
¶
__getattr__(name)
¶
Get converted entry or attribute from OPTIMADE entry.
Support any level of "."-nested OPTIMADE ENTRY_RESOURCE
attributes, e.g.,
attributes.species
for StuctureResource
.
Note
All nested attributes must individually be subclasses of pydantic.BaseModel
,
i.e., one can not access nested attributes in lists by passing a "."-nested name
to this method,
e.g., attributes.species.name
or attributes.species[0].name
will not work for variable name
.
Order:
- Try to return converted entry if using
as_<_type_converters key>
. - Try to return OPTIMADE
ENTRY_RESOURCE
(nested) attribute. - Try to return OPTIMADE
ENTRY_RESOURCE.attributes
(nested) attribute. - Raise
AttributeError
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
Requested attribute. |
required |
Raises:
Type | Description |
---|---|
AttributeError
|
If the requested attribute is not recognized. See above for the description of the order in which an attribute is tested for validity. |
Source code in optimade/adapters/base.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
|
__init__(entry)
¶
Parameters:
Name | Type | Description | Default |
---|---|---|---|
entry |
dict
|
A JSON OPTIMADE single resource entry. |
required |
Source code in optimade/adapters/base.py
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
|
convert(format)
¶
Convert OPTIMADE entry to desired format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
format |
str
|
Type or format to which the entry should be converted. |
required |
Raises:
Type | Description |
---|---|
AttributeError
|
If |
Returns:
Type | Description |
---|---|
Any
|
The converted entry according to the desired format or type. |
Source code in optimade/adapters/base.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
|
ingest_from(data, format=None)
classmethod
¶
Convert desired format to OPTIMADE format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
Any
|
The data to convert. |
required |
format |
str
|
Type or format to which the entry should be converted. |
None
|
Raises:
Type | Description |
---|---|
AttributeError
|
If |
Returns:
Type | Description |
---|---|
Any
|
The ingested Structure. |
Source code in optimade/adapters/base.py
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
|
Structure
¶
Bases: EntryAdapter
Lazy structure resource converter.
Go to EntryAdapter
to see the full list of methods
and properties.
Attributes:
Name | Type | Description |
---|---|---|
ENTRY_RESOURCE |
type[StructureResource]
|
This adapter stores entry resources as
|
_type_converters |
dict[str, Callable]
|
Dictionary of valid conversion types for entry. Currently available types:
|
_type_ingesters |
dict[str, Callable]
|
Dictionary of valid ingesters. |
as_<_type_converters> |
dict[str, Callable]
|
Convert entry to a type listed in |
from_<_type_converters> |
dict[str, Callable]
|
Convert an external type to an OPTIMADE
|
Source code in optimade/adapters/structures/adapter.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|
entry: EntryResource
property
¶
__getattr__(name)
¶
Get converted entry or attribute from OPTIMADE entry.
Support any level of "."-nested OPTIMADE ENTRY_RESOURCE
attributes, e.g.,
attributes.species
for StuctureResource
.
Note
All nested attributes must individually be subclasses of pydantic.BaseModel
,
i.e., one can not access nested attributes in lists by passing a "."-nested name
to this method,
e.g., attributes.species.name
or attributes.species[0].name
will not work for variable name
.
Order:
- Try to return converted entry if using
as_<_type_converters key>
. - Try to return OPTIMADE
ENTRY_RESOURCE
(nested) attribute. - Try to return OPTIMADE
ENTRY_RESOURCE.attributes
(nested) attribute. - Raise
AttributeError
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
Requested attribute. |
required |
Raises:
Type | Description |
---|---|
AttributeError
|
If the requested attribute is not recognized. See above for the description of the order in which an attribute is tested for validity. |
Source code in optimade/adapters/base.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
|
__init__(entry)
¶
Parameters:
Name | Type | Description | Default |
---|---|---|---|
entry |
dict
|
A JSON OPTIMADE single resource entry. |
required |
Source code in optimade/adapters/base.py
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
|
convert(format)
¶
Convert OPTIMADE entry to desired format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
format |
str
|
Type or format to which the entry should be converted. |
required |
Raises:
Type | Description |
---|---|
AttributeError
|
If |
Returns:
Type | Description |
---|---|
Any
|
The converted entry according to the desired format or type. |
Source code in optimade/adapters/base.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
|
ingest_from(data, format=None)
classmethod
¶
Convert desired format to OPTIMADE format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
Any
|
The data to convert. |
required |
format |
str
|
Type or format to which the entry should be converted. |
None
|
Raises:
Type | Description |
---|---|
AttributeError
|
If |
Returns:
Type | Description |
---|---|
Any
|
The ingested Structure. |
Source code in optimade/adapters/base.py
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
|
StructureResource
¶
Bases: EntryResource
Representing a structure.
Source code in optimade/models/structures.py
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 |
|
from_ase_atoms(atoms)
¶
Convert an ASE Atoms
object into an OPTIMADE StructureResourceAttributes
model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
atoms |
Atoms
|
The ASE |
required |
Returns:
Type | Description |
---|---|
StructureResourceAttributes
|
An OPTIMADE |
Source code in optimade/adapters/structures/ase.py
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
|
from_pymatgen(pmg_structure)
¶
Convert a pymatgen Structure
(3D) into an OPTIMADE StructureResourceAttributes
model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pmg_structure |
Structure
|
The pymatgen |
required |
Returns:
Type | Description |
---|---|
StructureResourceAttributes
|
An OPTIMADE |
Source code in optimade/adapters/structures/pymatgen.py
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
|
get_aiida_structure_data(optimade_structure)
¶
Get AiiDA StructureData
from OPTIMADE structure.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
optimade_structure |
StructureResource
|
OPTIMADE structure. |
required |
Returns:
Type | Description |
---|---|
StructureData
|
AiiDA |
Source code in optimade/adapters/structures/aiida.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
|
get_ase_atoms(optimade_structure)
¶
Get ASE Atoms
from OPTIMADE structure.
Caution
Cannot handle partial occupancies (this includes vacancies).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
optimade_structure |
StructureResource
|
OPTIMADE structure. |
required |
Returns:
Type | Description |
---|---|
Atoms
|
ASE |
Source code in optimade/adapters/structures/ase.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
get_cif(optimade_structure)
¶
Get CIF file as string from OPTIMADE structure.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
optimade_structure |
StructureResource
|
OPTIMADE structure. |
required |
Returns:
Type | Description |
---|---|
str
|
The CIF file as a single Python |
Source code in optimade/adapters/structures/cif.py
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
|
get_jarvis_atoms(optimade_structure)
¶
Get jarvis Atoms
from OPTIMADE structure.
Caution
Cannot handle partial occupancies.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
optimade_structure |
StructureResource
|
OPTIMADE structure. |
required |
Returns:
Type | Description |
---|---|
Atoms
|
A jarvis |
Source code in optimade/adapters/structures/jarvis.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
|
get_pdb(optimade_structure)
¶
Write Protein Data Bank (PDB) structure in the old PDB format from OPTIMADE structure.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
optimade_structure |
StructureResource
|
OPTIMADE structure. |
required |
Returns:
Type | Description |
---|---|
str
|
A PDB file as a single Python |
Source code in optimade/adapters/structures/proteindatabank.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
|
get_pdbx_mmcif(optimade_structure)
¶
Write Protein Data Bank (PDB) structure in the PDBx/mmCIF format from OPTIMADE structure.
Warning
The result of this function can currently not be parsed as a complete PDBx/mmCIF file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
optimade_structure |
StructureResource
|
OPTIMADE structure. |
required |
Return
A modern PDBx/mmCIF file as a single Python str
object.
Source code in optimade/adapters/structures/proteindatabank.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
|
get_pymatgen(optimade_structure)
¶
Get pymatgen Structure
or Molecule
from OPTIMADE structure.
This function will return either a pymatgen Structure
or Molecule
based
on the periodicity or periodic dimensionality of OPTIMADE structure.
For structures that are periodic in one or more dimensions, a pymatgen Structure
is returned when valid lattice_vectors are given.
This means, if the any of the values in the dimension_types
attribute is 1
s or if nperiodic_dimesions
> 0.
Otherwise, a pymatgen Molecule
is returned.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
optimade_structure |
StructureResource
|
OPTIMADE structure. |
required |
Returns:
Type | Description |
---|---|
Union[Structure, Molecule]
|
A pymatgen |
Union[Structure, Molecule]
|
OPTIMADE structure. |
Source code in optimade/adapters/structures/pymatgen.py
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
|