YSA Signal - Standalone signal analyzer for .brw/.h5 files
Project description
YSA Signal
Standalone signal analyzer for downsampled .brw files
YSA Signal processes MEA recordings from downsampled .brw files, detects seizures and status epilepticus events, and saves the results in a compact HDF5 format. Mac only for now.
Installation
pip install ysa-signal
Usage
GUI Mode
To run the GUI, just run this command after installation:
ysa-signal
The GUI provides two tabs:
- Process Files: Select input files, optionally enable seizure analysis, and save processed data
- View Signals: Load processed files and view signals in an interactive 64x64 channel grid
CLI Mode
# Process without analysis (faster)
ysa-signal input.brw output_processed.h5
# Process with seizure analysis
ysa-signal input.brw output_processed.h5 --do-analysis
Python API
from ysa_signal import process_and_store, save_processed_data, load_processed_data
# Read in downsampled .brw file, process it, and store the results in memory (not on disk on a file)
processed_data = process_and_store('/path/to/file.brw', do_analysis=True)
# Save the processed data to an h5 file (on disk on a file you specify)
save_processed_data(processed_data, '/path/to/file_processed.h5')
# With already processed data saved to an h5 file, you can load it back into memory
loaded_data = load_processed_data('/path/to/file_processed.h5')
# Example: Accessing data for a specific channel (row, col)
row = loaded_data.active_channels[0][0]
col = loaded_data.active_channels[0][1]
# Access the signal and seizure times for the specified channel
channel_data = loaded_data.data[row - 1, col - 1]
signal = channel_data['signal']
sz_times = channel_data['SzTimes']
Batch Processing Example
from ysa_signal import process_and_store, save_processed_data
import glob
for brw_file in glob.glob('data/*.brw'):
output_file = brw_file.replace('.brw', '_processed.h5')
processed_data = process_and_store(brw_file, do_analysis=True)
save_processed_data(processed_data, output_file)
Support
- GitHub: github.com/ParrishLab/ysa-signal
- Email: jacobbcahoon@gmail.com
- Phone: (385) 307-9925
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ysa_signal-1.1.10.tar.gz.
File metadata
- Download URL: ysa_signal-1.1.10.tar.gz
- Upload date:
- Size: 34.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
725ae4ecb7363dbb2f7ae659845e358bd3b89a92a5cc782b98dfd837ea4b4746
|
|
| MD5 |
7e165c99835a92d205ec051a3d6e9721
|
|
| BLAKE2b-256 |
7bdb3edcde7949c713e29a032d9371533e8c1f499eb3ea889cd48bb7e5fb7996
|
File details
Details for the file ysa_signal-1.1.10-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: ysa_signal-1.1.10-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 478.2 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bb24abfd39d7e010a4df02d0e20a622cac2ba36340e2e7c18681c4725e7ac5b
|
|
| MD5 |
44bacdd215960f0f9e734b1acde5c6a4
|
|
| BLAKE2b-256 |
93e366744087691b83105265a2dc280562b986db233a0c174f4ba498cf3546e6
|