Metadata-Version: 2.1
Name: ephyviewer
Version: 1.2.3
Summary: Simple viewers for ephys signals, events, video and more
Home-page: https://github.com/NeuralEnsemble/ephyviewer
Author: S.Garcia, Jeffrey Gill
Author-email: 
License: MIT
Project-URL: Documentation, https://ephyviewer.readthedocs.io/en/latest/
Project-URL: Source code, https://github.com/NeuralEnsemble/ephyviewer/
Project-URL: Bug tracker, https://github.com/NeuralEnsemble/ephyviewer/issues
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pyqtgraph (>=0.10.0)
Requires-Dist: matplotlib (>=2.0)
Requires-Dist: scipy

# ephyviewer

*Simple viewers for ephys signals, events, video and more*

[![PyPI][pypi-badge]][pypi]
[![Anaconda Cloud][anaconda-cloud-badge]][anaconda-cloud]
[![GitHub][github-badge]][github]
[![conda-forge Feedstock][conda-forge-feedstock-badge]][conda-forge-feedstock]
[![Documentation Status][rtd-status-badge]][rtd-status]

[Documentation] | [Release Notes] | [Issue Tracker]

**ephyviewer** is a Python library based on [pyqtgraph] for building custom
viewers for electrophysiological signals, video, events, epochs, spike trains,
data tables, and time-frequency representations of signals. It also provides an
epoch encoder for creating annotations.

![Screenshot][screenshot]

**ephyviewer** can be used at two levels: standalone app and library.

## Standalone application

The standalone app works with file types supported by [Neo]'s RawIO interface
(Axograph, Axon, Blackrock, BrainVision, Neuralynx, NeuroExplorer, Plexon,
Spike2, Tdt, etc.; see the documentation for [neo.rawio] for the full list).

Launch it from the console and use the menu to select a data file:
```
ephyviewer
```

Alternatively, launch it from the console with a filename (and optionally the
format):
```
ephyviewer File_axon_1.abf
ephyviewer File_axon_1.abf -f Axon
```

## Library for designing custom viewers for ephys datasets

Build viewers using code like this:

```python
import ephyviewer
import numpy as np

app = ephyviewer.mkQApp()

#signals
sigs = np.random.rand(100000,16)
sample_rate = 1000.
t_start = 0.
view1 = ephyviewer.TraceViewer.from_numpy(sigs, sample_rate, t_start, 'Signals')

win = ephyviewer.MainViewer(debug=True, show_auto_scale=True)
win.add_view(view1)
win.show()

app.exec_()

```

Check the docs for more [examples].


[anaconda-cloud]:              https://anaconda.org/conda-forge/ephyviewer
[anaconda-cloud-badge]:        https://img.shields.io/conda/vn/conda-forge/ephyviewer.svg?label=anaconda&logo=anaconda&logoColor=white
[conda-forge-feedstock]:       https://github.com/conda-forge/ephyviewer-feedstock
[conda-forge-feedstock-badge]: https://img.shields.io/badge/conda--forge-feedstock-blue.svg?logo=conda-forge&logoColor=white
[github]:                      https://github.com/NeuralEnsemble/ephyviewer
[github-badge]:                https://img.shields.io/badge/github-source_code-blue.svg?logo=github&logoColor=white
[pypi]:                        https://pypi.org/project/ephyviewer
[pypi-badge]:                  https://img.shields.io/pypi/v/ephyviewer.svg?logo=python&logoColor=white
[rtd-status]:                  https://readthedocs.org/projects/ephyviewer
[rtd-status-badge]:            https://readthedocs.org/projects/ephyviewer/badge/?version=latest

[Documentation]: https://ephyviewer.readthedocs.io/en/latest/
[Release Notes]: https://ephyviewer.readthedocs.io/en/latest/releasenotes.html
[Issue Tracker]: https://github.com/NeuralEnsemble/ephyviewer/issues

[screenshot]:    https://raw.githubusercontent.com/NeuralEnsemble/ephyviewer/master/doc/img/mixed_viewer_example.png
[pyqtgraph]:     http://www.pyqtgraph.org/
[Neo]:           https://neo.readthedocs.io/en/latest/
[neo.rawio]:     https://neo.readthedocs.io/en/latest/rawio.html#module-neo.rawio
[examples]:      https://ephyviewer.readthedocs.io/en/latest/examples.html


