Core
TableStore(path, mode='r', disk_format=DiskFormat.NONE, **kwargs)
¶
Bases: Store, ABC
Abstract interface for tabular data.
kind = StoreKind.TABLE
¶
query(path, ens_id=None, run_id=None, micro_id=None, filter_expr=None, **kwargs)
¶
Query a named table using a filter expression.
| PARAMETER | DESCRIPTION |
|---|---|
|
Container/table name.
TYPE:
|
|
A unique identification label for an ensemble.
This can be
TYPE:
|
|
An unique, independent run within the same ensemble. This often arises when running multiple independent molecular simulation trajectories with different random seeds.
TYPE:
|
|
An index specifying a microstate with some relationship to order. This can be a frame in a molecular simulation trajectories, docking scores from best to worst, optimization steps, etc.
TYPE:
|
|
string expression to filter rows.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Any
|
Filtered DataFrame. |