You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Testing is done with [nose](https://nose.readthedocs.io/en/latest/). Run the tests via:
119
+
120
+
```
121
+
openmatrix\test> nosetests -v
122
+
```
123
+
124
+
# OMX File Validator
125
+
Included in this package is a command line OMX file validation tool used to validate OMX files against the specification. The tool is added to the system PATH when the package is installed and can be run as follows:
126
+
127
+
```
128
+
omx-validate my_file.omx
129
+
```
130
+
115
131
# Usage Notes
116
132
117
133
### File Objects
@@ -181,7 +197,7 @@ A mapping allows rows and columns to be accessed using an integer value other th
181
197
## Global Properties
182
198
183
199
### `__version__`
184
-
OMX module version string. Currently '0.3.3' as of this writing. This is the Python API version.
200
+
OMX module version string. Currently '0.3.5' as of this writing. This is the Python API version.
185
201
186
202
### `__omx_version__`
187
203
OMX file format version. Currently '0.2'. This is the OMX file format specification that omx-python adheres to.
@@ -212,7 +228,7 @@ OMX file format version. Currently '0.2'. This is the OMX file format specificat
212
228
See HDF5 docs for more detail.
213
229
shape: numpy.array
214
230
Shape of matrices in this file. Default is None. Specify a valid shape
215
-
(e.g. (1000,1200)) to enforce shape-checking for all added objects.
231
+
(e.g. (1200,1200)) to enforce shape-checking for all added objects.
216
232
If shape is not specified, the first added matrix will not be shape-checked
217
233
and all subsequently added matrices must match the shape of the first matrix.
218
234
All tables in an OMX file must have the same shape.
0 commit comments