ElecPhys: A Python package for electrophysiology data analysis. It provides tools for data loading, analysis, conversion, preprocessing, and visualization.
ElecPhys is a Python package for electrophysiology data analysis. It provides tools for data loading, analysis, conversion, preprocessing, and visualization.. ElecPhys can convert .RHD fiels to .mat and .npz, and it can analyze the data in time and fourier domains. Please take a look at here for the complete list of available tools.
- Clone the repository or download the source code.
- cd into the repository directory.
- Run
python3 setup.py install
Run pip3 install elecphys
or pip install elecphys
It's possible to use ElecPhys as a command line tool or as a Python module.
To use ElecPhys from command line, you need to use the following pattern:
➜ elecphys COMMAND1 [ARGS]... [COMMAND2 [ARGS]...]
Where each COMMNAD can be one of the supported commands such as convert_rhd_to_mat, plot_stft, and ... . To learn more about the commnads, you can use the following command:
➜ elecphys --help
Usage: main.py [OPTIONS] COMMAND1 [ARGS]... [COMMAND2 [ARGS]...]...
ElecPhys is a Python package for electrophysiology data analysis. It
provides tools for data loading, conversion, preprocessing, and
visualization.
Options:
-v, --verbose Verbose mode
-d, --debug Debug mode
--help Show this message and exit.
Commands:
convert_mat_to_npz Converts MAT files to NPZ files using MAT...
convert_rhd_to_mat Converts RHD files to mat files using RHD...
dft_numeric_output_from_npz Computes DFT and saves results as NPZ files
freq_bands_power_over_time Computes signal's power in given...
frequncy_domain_filter Filtering in frequency domain using...
normalize_npz Normalizes NPZ files
pca_from_npz Computes PCA from NPZ files
plot_avg_stft Plots average STFT from NPZ files
plot_dft Plots DFT from NPZ file
plot_filter_freq_response Plots filter frequency response
plot_signal Plots signals from NPZ file
plot_stft Plots STFT from NPZ file
re_reference_npz re-references NPZ files and save them as...
stft_numeric_output_from_npz Computes STFT and saves results as NPZ files
zscore_normalize_npz Z-score normalizes NPZ files
You need to import ElecPhys and use it's modules inside your python code. For example:
import elecphys
# Path to folder containing RHD files
folder_path = "data/rhd_files"
# Path to the output .mat file
output_mat_file = "output.mat"
# Down sample factor
ds_factor = 5
# call rhd to mat conversoin module
elecphys.conversion.convert_rhd_to_mat(folder_path, output_mat_file, ds_factor)
Please check this link for full documentation