edf2csv 0.5.107 → 0.5.108
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 +22 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.108
|
|
7
|
+
|
|
8
|
+
### Fixed: the annotations page said the example recording has one signal
|
|
9
|
+
|
|
10
|
+
`edf2csv sleep-study.edf --info`, on the EDF+ annotations page, answered
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
Channels 1 signal + 1 annotation channel
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Three other pages run that exact command on that exact recording and print `5 signals`, which
|
|
17
|
+
is what it has: two EEG derivations, an EOG, a respiration trace and a rectal temperature, all
|
|
18
|
+
of them listed in the channel table further down two of those pages.
|
|
19
|
+
|
|
20
|
+
The line had been written to make the section's point — that the annotation channel is counted
|
|
21
|
+
apart from the signals — and the real number makes it just as well.
|
|
22
|
+
|
|
23
|
+
A test now runs `--info` on the fixture the site's example recording is built from and compares
|
|
24
|
+
every header line the docs show against the line that comes out, on every page, skipping only
|
|
25
|
+
`File` (the path as typed, which differs by page on purpose). It reads the fields a block chose
|
|
26
|
+
to show, so an excerpt of two lines is checked as strictly as a full block.
|
|
27
|
+
|
|
6
28
|
## 0.5.107
|
|
7
29
|
|
|
8
30
|
### Fixed: recipes.md said the signal CSVs are already sorted, and one kind of file is not
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.108",
|
|
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",
|