Initialize the DataParser instance with the root path. Args: data_root_path (str): The root path where data is located.
(self, data_root_path)
| 127 | """ |
| 128 | |
| 129 | def __init__(self, data_root_path): |
| 130 | """ |
| 131 | Initialize the DataParser instance with the root path. |
| 132 | |
| 133 | Args: |
| 134 | data_root_path (str): The root path where data is located. |
| 135 | """ |
| 136 | self.data_root_path = os.path.join(data_root_path) |
| 137 | |
| 138 | def TrajStringToMatrix(self, traj_str): |
| 139 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected