Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: BlueBrain/eFEL
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5.7.11
Choose a base ref
...
head repository: BlueBrain/eFEL
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5.7.12
Choose a head ref
  • 1 commit
  • 2 files changed
  • 2 contributors

Commits on Nov 8, 2024

  1. talk about special features in use-case (#413)

    ---------
    
    Co-authored-by: Jaquier Aurélien Tristan <[email protected]>
    AurelienJaquier and Jaquier Aurélien Tristan authored Nov 8, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ebe0084 View commit details
Showing with 6 additions and 1 deletion.
  1. +2 −0 README.md
  2. +4 −1 docs/source/python_example1.rst
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -139,6 +139,8 @@ 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](https://github.com/BlueBrain/eFEL/blob/master/examples/extracellular/extrafeats_example.ipynb) for extra-cellular features, [here](https://github.com/BlueBrain/eFEL/blob/master/docs/source/eFeatures.rst#bpap_attenuation) for bpap_attenuation feature and [here](https://github.com/BlueBrain/eFEL/blob/master/docs/source/eFeatures.rst#check_ais_initiation) for check_ais_initiation feature.

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

```python
5 changes: 4 additions & 1 deletion docs/source/python_example1.rst
Original file line number Diff line number Diff line change
@@ -9,11 +9,14 @@ To get a list with all the available eFeature 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 <https://github.com/BlueBrain/eFEL/blob/master/examples/extracellular/extrafeats_example.ipynb>`__ for extra-cellular features, `here <https://github.com/BlueBrain/eFEL/blob/master/docs/source/eFeatures.rst#bpap_attenuation>`__ for bpap_attenuation feature and `here <https://github.com/BlueBrain/eFEL/blob/master/docs/source/eFeatures.rst#check_ais_initiation>`__ for check_ais_initiation feature.

The python function to extract eFeatures is get_feature_values(...).
Below is a short example on how to use this function.

The code and example trace are available
`here <https://github.com/BlueBrain/eFEL/blob/master/examples/basic/basic_example1.py>`_::
`here <https://github.com/BlueBrain/eFEL/blob/master/examples/basic/basic_example1.py>`__::

"""Basic example 1 for eFEL"""