edf2csv 0.5.88 → 0.5.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
Notable changes to edf2csv. Versions follow [semantic versioning](https://semver.org); while the
|
|
4
4
|
major version is 0, a minor bump may contain breaking changes.
|
|
5
5
|
|
|
6
|
+
## 0.5.89
|
|
7
|
+
|
|
8
|
+
### Fixed: the getting-started example asked for a channel the recording does not have
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
edf2csv sleep-study.edf --start 1h --duration 5m \
|
|
12
|
+
--channels "EEG Fpz-Cz,ECG" --out ./epoch-42
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
exits 2 with `No channel named "ECG"`. The `--info` table forty lines up the same page lists
|
|
16
|
+
that recording's five channels — EEG Fpz-Cz, EEG Pz-Oz, EOG horizontal, Resp oro-nasal, Temp
|
|
17
|
+
rectal — and none of them is ECG. It is the page's one example of combining a window, a filter
|
|
18
|
+
and a destination, and it is the third command a new reader runs.
|
|
19
|
+
|
|
20
|
+
The same pair appears on four pages: getting-started, recipes, and faq twice. The fifth is in
|
|
21
|
+
warnings-and-errors, demonstrating the mixed-rate warning, where the quoted rates were wrong for
|
|
22
|
+
this recording too — "2 different sampling rates (256 Hz, 128 Hz)" against a file whose channels
|
|
23
|
+
run at 100, 10 and 1 Hz. That one now pairs `EEG Fpz-Cz` with `Temp rectal` and quotes 100 Hz
|
|
24
|
+
and 1 Hz, which is what the file gives.
|
|
25
|
+
|
|
26
|
+
api.md's JavaScript examples have been executed against a fixture for a long time. The shell
|
|
27
|
+
examples were checked by nobody, and this is the part of them a test can check without a shell:
|
|
28
|
+
a channel named for this recording either exists in it or does not. It reads every page and the
|
|
29
|
+
README, and it took two attempts — the first missed getting-started's command entirely, because
|
|
30
|
+
that one wraps with a trailing backslash and its `--channels` is on the second line. It joins
|
|
31
|
+
continuations first now.
|
|
32
|
+
|
|
6
33
|
## 0.5.88
|
|
7
34
|
|
|
8
35
|
### Fixed: a worker killed from outside made the batch exit 2, "the command line is the problem"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.89",
|
|
4
4
|
"description": "Convert EDF, EDF+ and BDF biosignal recordings (European Data Format) to CSV from the command line. Local, streaming, and never resamples or alters units.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"edf",
|