|
66 | 66 | data appears before the second column's. As an aside, because of this |
67 | 67 | design choice AxoGraph cannot write data to disk as it is collected but |
68 | 68 | must store it all in memory until data acquisition ends. This also affected |
69 | | - how file slicing was implmented for this RawIO: Instead of using a single |
| 69 | + how file slicing was implemented for this RawIO: Instead of using a single |
70 | 70 | memmap to address into a 2-dimensional block of data, AxographRawIO |
71 | 71 | constructs multiple 1-dimensional memmaps, one for each column, each with |
72 | 72 | its own offset. |
|
127 | 127 | Segments in Neo. Certain criteria have to be met, such as all groups |
128 | 128 | containing equal numbers of traces and each group having homogeneous signal |
129 | 129 | parameters. If trace grouping was modified by the user after data |
130 | | - acquisition, this may result in the file being interpretted as |
| 130 | + acquisition, this may result in the file being interpreted as |
131 | 131 | non-episodic. Older versions of the AxoGraph file format lack group headers |
132 | 132 | entirely, so these files are never deemed safe to interpret as episodic, |
133 | 133 | even if the column names follow a repeating sequence as described above. |
@@ -397,7 +397,7 @@ def _rescale_epoch_duration(self, raw_duration, dtype, event_channel_index): |
397 | 397 |
|
398 | 398 | def _safe_to_treat_as_episodic(self): |
399 | 399 | """ |
400 | | - The purpose of this fuction is to determine if the file contains any |
| 400 | + The purpose of this function is to determine if the file contains any |
401 | 401 | irregularities in its grouping of traces such that it cannot be treated |
402 | 402 | as episodic. Even "continuous" recordings can be treated as |
403 | 403 | single-episode recordings and could be identified as safe by this |
@@ -627,7 +627,7 @@ def _scan_axograph_file(self): |
627 | 627 | # COLUMN TYPE |
628 | 628 |
|
629 | 629 | # depending on the format version, data columns may have a type |
630 | | - # - prior to verion 3, column types did not exist and data was |
| 630 | + # - prior to version 3, column types did not exist and data was |
631 | 631 | # stored in a fixed pattern |
632 | 632 | # - beginning with version 3, several data types are available |
633 | 633 | # as documented in AxoGraph_ReadWrite.h |
|
0 commit comments