Skip to main content

Electrophys Feature Extract Library (eFEL)

Project description

eFEL banner
Latest Release latest release
Documentation latest documentation
License license
Build Status actions build status
Coverage coverage
Gitter
Citation DOI

Introduction

The Electrophys Feature Extraction Library (eFEL) allows neuroscientists to automatically extract features from time series data recorded from neurons (both in vitro and in silico). Examples are the action potential width and amplitude in voltage traces recorded during whole-cell patch clamp experiments. The user of the library provides a set of traces and selects the features to be calculated. The library will then extract the requested features and return the values to the user.

The core of the library is written in C++, and a Python wrapper is included. At the moment we provide a way to automatically compile and install the library as a Python module. Instructions on how to compile the eFEL as a standalone C++ library can be found here.

How to cite

When you use this eFEL software for your research, we ask you to cite it (this includes poster presentations) by referring to the "Cite this repository" button at the top of the repository page to get various citation formats, including APA and BibTeX.

For detailed citation information, please refer to the CITATION.cff file.

Requirements

  • Python 3.10+
  • Pip (installed by default in newer versions of Python)
  • C++ compiler that can be used by pip
  • Numpy (will be installed automatically by pip)
  • The instruction below are written assuming you have access to a command shell on Linux / UNIX / MacOSX / Cygwin

Installation

The easiest way to install eFEL is to use pip

pip install efel

In case you don't have administrator access this command might fail with a permission error. In that case you could install eFEL in your home directory

pip install efel --user

Or you could use a python virtual environment

virtualenv pythonenv
. ./pythonenv/bin/activate
# If you use csh or tcsh, you should use:
# source ./pythonenv/bin/activate.csh
pip install efel

If you want to install straight from the github repository you can use

pip install git+git://github.com/openbraininstitute/eFEL

Quick Start

First you need to import the module

import efel

To get a list with all the available feature names

efel.get_feature_names()

Note that the extra-cellular features, the bpap_attenuation feature and the check_ais_initiation feature are not listed above because they have to be used in a special way, as described here for extra-cellular features, here for bpap_attenuation feature and here for check_ais_initiation feature.

To change the spike detection threshold setting (default is -20 mV)

efel.set_setting('Threshold', -30)

For a full list of available settings, please refer to the Setting class

The python function to extract features is get_feature_values(...). Below is a short example on how to use this function. The code and example trace are available here

"""Basic example 1 for eFEL"""

import efel
import numpy

def main():
    """Main"""

    # Use numpy to read the trace data from the txt file
    data = numpy.loadtxt('example_trace1.txt')

    # Time is the first column
    time = data[:, 0]
    # Voltage is the second column
    voltage = data[:, 1]

    # Now we will construct the datastructure that will be passed to eFEL

    # A 'trace' is a dictionary
    trace1 = {}

    # Set the 'T' (=time) key of the trace
    trace1['T'] = time

    # Set the 'V' (=voltage) key of the trace
    trace1['V'] = voltage

    # Set the 'stim_start' (time at which a stimulus starts, in ms)
    # key of the trace
    # Warning: this need to be a list (with one element)
    trace1['stim_start'] = [700]

    # Set the 'stim_end' (time at which a stimulus end) key of the trace
    # Warning: this need to be a list (with one element)
    trace1['stim_end'] = [2700]

    # Multiple traces can be passed to the eFEL at the same time, so the
    # argument should be a list
    traces = [trace1]

    # set the threshold for spike detection to -20 mV
    efel.set_setting('Threshold', -20)

    # Now we pass 'traces' to the efel and ask it to calculate the feature
    # values
    traces_results = efel.get_feature_values(traces,
                                           ['AP_amplitude', 'voltage_base'])

    # The return value is a list of trace_results, every trace_results
    # corresponds to one trace in the 'traces' list above (in same order)
    for trace_results in traces_results:
        # trace_result is a dictionary, with as keys the requested features
        for feature_name, feature_values in trace_results.items():
            print("Feature %s has the following values: %s" %
                (feature_name, ', '.join([str(x) for x in feature_values])))


if __name__ == '__main__':
    main()

The output of this example is

Feature AP_amplitude has the following values: 72.5782441262, 46.3672552618, 41.1546679158, 39.7631750953, 36.1614653031, 37.8489295737
Feature voltage_base has the following values: -75.446665721

This means that the eFEL found 5 action potentials in the voltage trace. The amplitudes of these APs are the result of the 'AP_amplitude' feature. The voltage before the start of the stimulus is measured by 'voltage_base'. Results are in mV.

Full documentation

The full documentation can be found here

Funding

This work has been partially funded by the European Union Seventh Framework Program (FP7/2007­2013) under grant agreement no. 604102 (HBP), the European Union’s Horizon 2020 Framework Programme for Research and Innovation under the Specific Grant Agreement No. 720270, 785907 (Human Brain Project SGA1/SGA2) and by the EBRAINS research infrastructure, funded from the European Union’s Horizon 2020 Framework Programme for Research and Innovation under the Specific Grant Agreement No. 945539 (Human Brain Project SGA3). This project/research was supported by funding to the Blue Brain Project, a research center of the École polytechnique fédérale de Lausanne (EPFL), from the Swiss government’s ETH Board of the Swiss Federal Institutes of Technology.

Copyright (c) 2009-2024 Blue Brain Project/EPFL

Copyright (c) 2025 Open Brain Institute

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

efel-5.7.26.tar.gz (141.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

efel-5.7.26-cp314-cp314t-win_amd64.whl (418.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

efel-5.7.26-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

efel-5.7.26-cp314-cp314t-macosx_11_0_arm64.whl (254.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

efel-5.7.26-cp314-cp314-win_amd64.whl (418.8 kB view details)

Uploaded CPython 3.14Windows x86-64

efel-5.7.26-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

efel-5.7.26-cp314-cp314-macosx_11_0_arm64.whl (254.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

efel-5.7.26-cp313-cp313-win_amd64.whl (408.3 kB view details)

Uploaded CPython 3.13Windows x86-64

efel-5.7.26-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

efel-5.7.26-cp313-cp313-macosx_11_0_arm64.whl (254.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

efel-5.7.26-cp312-cp312-win_amd64.whl (408.3 kB view details)

Uploaded CPython 3.12Windows x86-64

efel-5.7.26-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

efel-5.7.26-cp312-cp312-macosx_11_0_arm64.whl (254.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

efel-5.7.26-cp311-cp311-win_amd64.whl (408.3 kB view details)

Uploaded CPython 3.11Windows x86-64

efel-5.7.26-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

efel-5.7.26-cp311-cp311-macosx_11_0_arm64.whl (253.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

efel-5.7.26-cp310-cp310-win_amd64.whl (408.3 kB view details)

Uploaded CPython 3.10Windows x86-64

efel-5.7.26-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

efel-5.7.26-cp310-cp310-macosx_11_0_arm64.whl (253.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file efel-5.7.26.tar.gz.

File metadata

  • Download URL: efel-5.7.26.tar.gz
  • Upload date:
  • Size: 141.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for efel-5.7.26.tar.gz
Algorithm Hash digest
SHA256 8830837573a70075444ef42d036a2787de171c3d8443240799cd25dc0497d58e
MD5 60b6ec2caf16b94228658286b7e48e1d
BLAKE2b-256 b52c66eb2be922d874a86458da2f9aee763c27e0b306bf32a48972b1684c1e26

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26.tar.gz:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.26-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 418.9 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for efel-5.7.26-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 00f12165eaa6ff1d3ee9d0b937f5c3900366aaf3c965ee34ee1c033d13edd5ef
MD5 f2dc35fd796005767202ae5c1f3ad2dd
BLAKE2b-256 07a571b1f24788cfa9962d6629035f50a89f257ab2bda5ccbda46706ccc53ab0

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp314-cp314t-win_amd64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.26-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a15bdd88e065ec38732cfeeae9b7e4d8585b1ac0631507fc913017aab6db4792
MD5 d52343bab9a0d8394eeb707c69959889
BLAKE2b-256 1dc7bfa3cf3314398d5fdaca3a09e089b6c9d749cae98cdff4eaf5c39ec64cf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.26-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62982eb0ef566a831d1225bdbe8efde8c2b5ed61af033ae74dad0c9c9ebeb97d
MD5 78ffec6e2ab2f7e1191bdec7b44cb489
BLAKE2b-256 29f3f1da77a7a1581efa05058afd14c85ce5e4e6b81d3cd38f80f58115aa0d6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.26-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 418.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for efel-5.7.26-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7021f52e5b0cad9d96dc6ac8f3987dc158326fe5242f150284ef73106ff9b382
MD5 983ce52260c6bfeff395af50d6cc3a50
BLAKE2b-256 0ec871e22436aa02873fe0f718b99d039d8ec4773772dcff81efbe587712772e

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.26-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 308a20d0269e1ac82009f514b5397e519ccf1c331376fcd16846475b010d6019
MD5 41014e35505e24b0102b0c819fe2e853
BLAKE2b-256 7893d9ccbd71ac0727e3736454bb6af531d3f5a0a2743893bfee6714beecfee2

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.26-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 945f449e5d5e300a49e3535f3acd82e7535cc22d8497f1a27ce3e04a4b34a2f8
MD5 8bfeb4430d56282d2c83c5b917abf63a
BLAKE2b-256 60077efdd35b95a22f35ac8d045be6f72b1cc5770545a192b74d6730fb8eedc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.26-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 408.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for efel-5.7.26-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9d1aee773f1f2857ebf604bc103df6bbcaadc8f145e2de3b12b9ee2105452d14
MD5 02683a596a9569eab88a6080105ec57d
BLAKE2b-256 9f2f658f92820f7d4921041450513f0549de7ae4118a02adb94f667710ae7db9

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.26-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9319c2028f2799617cdf66de001eb13b779837fb4022b559fc8635bf07cdf0a
MD5 7911f27eeb52d2d915147d5cbdf84bd4
BLAKE2b-256 2f6d09dc9a90879aa281e9173c81c287616ec9f562d755214319210f1ff4bc9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.26-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62b05f3bcbe5c36465c0017464aa1adb16af8cb19e2f576882b78c82a03e8ad1
MD5 d84dc05f2799e02c697e38ebd42d428c
BLAKE2b-256 3cc8803ba6f01f7a7fee9b0a01a52f2ff7b1e3332c922faa36b3af8f0031b07a

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.26-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 408.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for efel-5.7.26-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ff1476ec4af24e666be264e93609e94f86e41af3263f9a58138d64cb6e7de560
MD5 ddd9ba357709f31023185a156a5f03e6
BLAKE2b-256 22a5238d236f1f0cd801883b323abd89f8ffbc7edc78c3a2bee58255bf592c9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.26-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5794664d38b947803b3e8162d64393214b9a4e687be2f89bb847a6d2fcd8627f
MD5 4ff957ef3006966b6be45644e2f5e4a1
BLAKE2b-256 7c975cb8e3c89763db7a437ed7c58f048a4fdd74b2e6216f5004a293a0787ef3

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.26-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c8a0204545c094ce5151e4dde49d6c180099468bb3f6005f2c1afe3ca0062bc
MD5 85b9c265515d0d9b429272948fdc2edb
BLAKE2b-256 c1d3c3d9c6f0afa0e3406764d44073e1e26d0e35d0a40380fb78cf02f1be6ab6

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.26-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 408.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for efel-5.7.26-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 55b9036b0611645ad7cc9bbc88a4ceca7ec2303866fc90de6022b69ff0dd3413
MD5 d8d3024415ffa1e0ba9f5910c0310e51
BLAKE2b-256 f2937ede6f9750f4764ddbd7e0d4ff7e8c754621f21423efd7c38ec576af6610

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.26-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9331ef8cc2e064ff5158e7eb74e36bc90ea4ecec436435b58e8f9a2310c9750
MD5 20917cc3d0d2f217e8821f01b1cb908c
BLAKE2b-256 429110f326958f0786164f8ce9505417231c8db15812d90b6e769ed24add8ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.26-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38e1f33857677a7bc9712e1ee62f56bed771399566c1efd7deb2b5e43ff2175a
MD5 7243c14eed34d8ac45b885d3171bbcaf
BLAKE2b-256 f26b866e8bfc52131b6f5394be50f296a15662e14288b1cc8aeacc0e998717c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.26-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 408.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for efel-5.7.26-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 95ee542e65a24419d2f0567795eaed8637c5ffdf20ea312e96dd904704d5529c
MD5 f9bcacece944556c88938843498418d9
BLAKE2b-256 061a3c56540b4302fd90a315225e89ec92ecc446d2eac20940410dd4388b864e

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.26-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85d8d254b313f16aa49216b29811fa9c43072c73d02b0d29212be8d2fc0d2d71
MD5 cfc2faacd9bc82dbf1a527d88e6c7a13
BLAKE2b-256 1bf8ca617a40a6501b43a906e1c47a37e8810499ddc33c4ec8468764c81c693b

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.26-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.26-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 199efacdd7e65a68ffe87024eef3c7f3277e4d24bfd194927a33a7de909c6abd
MD5 4e5b3f4c74e42354ef56225d765112f8
BLAKE2b-256 91fa52cf8c00df26ef3f72ba1f3e6fa21f2c470eaf659d6ad508be5cbf3c4427

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.26-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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