Skip to main content

Cycle-by-cycle analyses of neural oscillations.

Project description

ProjectStatus Version BuildStatus Coverage License PythonVersions Publication

NOTE: ByCycle is currently under-going a major new version update.

The development version in this repository is no longer compatible with prior releases.

Overview

bycycle is a python implementation of a cycle-by-cycle approach to analyzing neural oscillations (Cole & Voytek, J Neurophysiol 2019). This approach quantifies features of neural oscillations in the time domain as opposed to the frequency domain. Rather than applying narrowband filters and other methods that utilize a sinusoidal basis, this characterization segments a recording into individual cycles and directly measures each of their properties including amplitude, period, and symmetry. This is most advantageous for analyzing the waveform shape properties of neural oscillations, but it may also provide advantages for studying traditional amplitude and frequency effects, as well. It also implements burst detection, which has gained traction recently ( Jones, 2016). Therefore, we only analyze oscillatory properties when there is indeed an oscillation.

A full description of the method and approach is available in the paper below.

Reference

If you use this code in your project, please cite:

Cole SR & Voytek B (2019) Cycle-by-cycle analysis of neural oscillations. J Neurophysiol
122:2, 849-861. doi: https://doi.org/10.1152/jn.00273.2019

Direct Link: https://journals.physiology.org/doi/abs/10.1152/jn.00273.2019

Documentation

Documentation for bycycle is available on the documentation site.

This documentation includes:

  • Tutorials: with a step-by-step guide through the approach and how to apply it

  • Examples: demonstrating an example analysis and use case

  • API list: which lists and describes all the code and functionality available in the module

Dependencies

bycycle is written in Python, and is tested to work with Python 3.5.

It has the following dependencies:

Install

Stable Version

To install the latest stable release, you can use pip:

$ pip install bycycle

ByCycle can also be installed with conda, from the conda-forge channel:

$ conda install -c conda-forge bycycle

Development Version

To get the lastest, development version, you can get the code using git:

$ git clone https://github.com/bycycle-tools/bycycle

To install this cloned copy, move into the directory you just cloned, and run:

$ pip install .

Editable Version

To install an editable, development version, move into the directory you cloned and install with:

$ pip install -e .

Usage

The main function in bycycle is compute_features, which takes a time series and some parameters as inputs and returns a table of features for each cycle. Consider having a 1-dimensional numpy array, sig, which is a neural signal time series sampled at 1000 Hz (fs) that contains an alpha (8-12 Hz, f_range) oscillation. We can compute the table of cycle features with the following:

from bycycle.filt import lowpass_filter
from bycycle.features import compute_features

sig_filt = lowpass_filter(sig, fs, f_lowpass, n_seconds=n_seconds, remove_edge_artifacts=False)

fs = 1000
f_range = (8, 12)
df = compute_features(sig_filt, fs, f_range)

Note that a lowpass filter is applied in order to remove high-frequency power that may interfere with extrema localization. (see section 0 of the algorithm tutorial for more details).

It’s necessary to note that the above compute_features command used default parameters to localize extrema and detect bursts of oscillations. However, it is important to knowledgeably select these parameters, as described in the algorithm tutorial. The following example and text go over the different potential parameter changes:

burst_kwargs = {'amplitude_fraction_threshold': .2,
                'amplitude_consistency_threshold': .5,
                'period_consistency_threshold': .5,
                'monotonicity_threshold': .8,
                'n_cycles_min': 3}

narrowband_kwargs = {'n_seconds': .5}

df = compute_features(sig, fs, f_range,
                      center_extrema='T',
                      burst_detection_method='cycles',
                      burst_detection_kwargs=burst_kwargs,
                      find_extrema_kwargs={'filter_kwargs': narrowband_kwargs},
                      hilbert_increase_N=True)
  • center_extrema determines how the cycles are segmented. ‘T’ indicates the center extrema is a trough, so cycles are segmented peak-to-peak.

  • burst_detection_method selects which method for burst detection is used. The ‘cycles’ option uses features of adjacent cycles in order to detect bursts (e.g. period consistency, see next item). The ‘amp’ option uses an amplitude threshold to determine the cycles that are part of an oscillatory burst.

  • burst_detection_kwargs set the keyword arguments for the burst detection function. For the cycles method, there are 5 keyword arguments (see the end of the algorithm tutorial for advice on choosing these parameters).

  • find_extrema_kwargs set the keyword arguments for the function used to localize peaks and troughs. Most notably, you can change the duration of the bandpass filter (N_seconds) used during extrema localization (see section 1 of the algorithm tutorial).

  • hilbert_increase_N is a boolean indicator of whether or not to zeropad the signal to bypass complications that scipy.signal.hilbert() has with some long signal durations. Try setting this parameter to True if this function is taking a long time to run. Note the Hilbert Transform is used to compute the band_amp feature of each cycle, which is the average analytic amplitude of the frequency of interest in that cycle. This is complementary to the volt_amp measure, and may be desired for some burst detection applications.

Output

The output of bycycle is a pandas.DataFrame, a table like the one shown below (with many columns, so it is split into two images).

Each row of this table corresponds to an individuals segment of the signal, or a putative cycle of the rhythm of interest.

https://github.com/bycycle-tools/bycycle/raw/master/doc/img/cycledf_1.png

https://github.com/bycycle-tools/bycycle/raw/master/doc/img/cycledf_2.png

Some of the columns include:

  • sample_peak: the sample of the signal at which the peak of this cycle occurs

  • period: period of the cycle

  • time_peak: duration of the peak period

  • volt_amp: amplitude of this cycle, average of the rise and decay voltage

  • time_rdsym: rise-decay symmetry, the fraction of the cycle in the rise period (0.5 is symmetric)

  • time_ptsym: peak-trough symmetry, the fraction of the cycle in the peak period (0.5 is symmetric)

  • period_consistency: consistency between the periods of the adjacent cycles, used in burst detection

  • is_burst: indicator if the cycle is part of an oscillatory burst

The features in this table can then go on to be analyzed, as demonstrated in the resting-state data tutorial and the data example. For example, we may be interested in the distribution of rise-decay symmetry values in a resting state recording, shown below.

Rdsym Distribution:

https://github.com/bycycle-tools/bycycle/raw/master/doc/img/rdsym_distribution.png

The plot below indicates in red the cycles of the signal that were identified as part of an oscillatory burst.

Burst Detection Results

https://github.com/bycycle-tools/bycycle/raw/master/doc/img/bursts_detected.png

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bycycle-1.0.0rc1.tar.gz (42.1 kB view hashes)

Uploaded Source

Built Distribution

bycycle-1.0.0rc1-py3-none-any.whl (56.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page