Skip to content

Commit

Permalink
- Remove coverage logs
Browse files Browse the repository at this point in the history
- Update changelogs.rst
  • Loading branch information
LegrandNico committed Sep 13, 2020
1 parent 07ad050 commit 235c1d2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
1 change: 0 additions & 1 deletion .coverage

This file was deleted.

18 changes: 17 additions & 1 deletion source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,29 @@ What's new
.. contents:: Table of Contents
:depth: 2

v0.1.2 (September 2020)
--------------------

**New functions**

a. Add :py:func:`systole.utils.to_rr()`. for peaks or index vectors convertion to RR intervals
b. Add :py:func:`systole.recording.BrainVisionExG()`, a class to read physio recording from BrainVision ExG products via TCP/IP connection.
c. Add :py:func:`systole.recording.findOximeter()`, find the USB port where Nonin Oximeter is plugged by looping through the USB port and checking the input.
d. Add :py:func:`systole.detection.ecg_peaks()`. A wrapper around py-ecg-detectors for basic ECG peaks detection.

**Enhancements**
a. Improved documentation and examples.
b. Simplification of PPG example data import.
c. Improved interactive plotting functions.


v0.1.1 (June 2020)
------------------

**New functions**

a. Add the **plotly** sub-module, a set of Plotly functions comprising :py:func:`systole.plotly.plot_raw`, :py:func:`systole.plotly.plot_subspaces`, :py:func:`systole.plotly.plot_ectopic`, :py:func:`systole.plotly.plot_shortLong`, :py:func:`systole.plotly.plot_frequency`, :py:func:`systole.plotly.plot_nonlinear`, :py:func:`systole.plotly.plot_timedomain`.
b. Add :py:func:`plotly.utils.simulate_rr()`, for random RR interval simulation with different kind of artefacts. Can also return peak vector.
b. Add :py:func:`systole.utils.simulate_rr()`, for random RR interval simulation with different kind of artefacts. Can also return peak vector.
c. The **correction** sub-module has been largely rewritten and now include :py:func:`systole.correction.correct_extra`, :py:func:`systole.correction.correct_missed`, :py:func:`systole.correction.interpolate_bads`, :py:func:`systole.correction.correct_rr`, :py:func:`systole.correction.correct_peaks`, :py:func:`systole.correction.correct_missed_peaks`, :py:func:`systole.correction.correct_extra_peaks`. These function can correct artefacts either using peaks addition/removal or by interpolation of the RR time series.

**Enhancements**
Expand Down
4 changes: 2 additions & 2 deletions systole/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class serialSim():
sampling rate (75 Hz).
"""

def __init__(self, id='1'):
def __init__(self):
self.sfreq = 75
self.ppg = import_ppg().ppg.to_numpy()
self.start = time.time()
Expand All @@ -29,7 +29,7 @@ def inWaiting(self):

return lenInWating

def read(self, length):
def read(self, lenght):

if len(self.ppg) == 0:
self.ppg = import_ppg().ppg.to_numpy()
Expand Down

0 comments on commit 235c1d2

Please sign in to comment.