Data
schemas.data.Data
¶
Bases: ABC
Assists with updating data with atomistic schemas.
_get_field_value(key)
¶
_set_field(key, value, separator='.')
¶
_trim_molecule_arrays(mol_index, schema_map)
¶
_update_array(key, value, mol_index=0)
¶
Update an array field in the schema, resizing if necessary.
PARAMETER | DESCRIPTION |
---|---|
key
|
The key of the array field to update. Can use dot notation for nested attributes.
TYPE:
|
value
|
The value to add to the array.
TYPE:
|
mol_index
|
The current index for appending new values.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
int
|
The updated molecule index after appending the new values. |
RAISES | DESCRIPTION |
---|---|
TypeError
|
If the value is not a numpy array or cannot be converted to one. |
update_atomistic(data, schema_map, mol_index=0)
¶
Update the fields of the Schema instance with the provided data.
This method updates the attributes of the Schema instance based on the keys and values in the provided dictionary. The keys in the dictionary can represent nested fields using dot notation.
PARAMETER | DESCRIPTION |
---|---|
data
|
A dictionary containing the keys and values to update the EnsembleSchema instance. The keys can use dot notation to specify nested attributes. |
schema_map
|
A mapping of field keys to their cadence and other metadata. |
mol_index
|
The current molecule index for updating array fields.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
int
|
The updated molecule index after processing the input data. |
Example
RAISES | DESCRIPTION |
---|---|
AttributeError
|
If a specified attribute does not exist in the schema. |
ValueError
|
If the cadence is unknown. |
Notes
- The method supports updating nested attributes by splitting keys on the dot ('.') character.
- If a key does not use dot notation, it will update the top-level attribute directly.