Skip to main content

Quality of life patch for the NEURON simulator.

Project description

Build Status Documentation Status Ruff codecov

Drop in replacement

*No ducks were punched during the construction of this monkey patch.

Installation

pip install nrn-patch

Minimal requirements

  • Python 3.8+
  • NEURON 9.0+

Philosophy

Pythonic reinvention of the NEURON Python interface:

  • Drop-in replacement: No breaking changes between Patch and NEURON. All your code works as is. Patch automagically fixes bugs and reduces complexity in NEURON by having an opinion, and adds new convenient methods.
  • Loud errors: silent failures and gotchas are caught and raise loud errors; so that when it runs, it runs.
  • Strong referencing: Objects connected to each other will never disappear until you disconnect them.
  • Demystified: The simplest form of each instruction does the most obvious thing. Patch frequently replaces 5 or more undocumented mystical voodoo steps by 1 clearly named function.
  • Just add water: Serial or parallel, doesn't matter, p.run() will run your simulation with no extra steps. No load_file, finitialize, fadvance, run, continuerun, tstop, set_maxstep, setup_transfer, setgid2node, gid_connect, cell, outputcell, psolve required.

Basic usage

Use it like you would use NEURON. The wrapper doesn't make any changes to the interface, it just patches up some of the more frequent and ridiculous gotchas.

Patch supplies a new interpreter p, the PythonHocInterpreter which wraps the standard HOC interpreter h provided by NEURON. Any objects returned will either be PythonHocObject's wrapping their corresponding NEURON object, or whatever NEURON returns.

When using just Patch the difference between NEURON and Patch objects is handled transparently, but if you wish to mix interpreters you can transform all Patch objects back to NEURON objects with obj.__neuron__(), or the transform function.

Example

from patch import p
import glia as g

section = p.Section()
point_process = g.insert(section, "AMPA")
point_process.stimulate(start=10, number=5, interval=10, weight=0.04)

.stimulate creates both the NetCon and NetStim, and sets their properties, and stores references to eachother so that Python doesn't garbage collect anything until we're done with it.

Even when you forget to set values, the Patch defaults have a visible effect. Here we forget to set the duration of a voltage clamp, but by default it will be active the first 100ms of the simulation, so that you can see that the voltage clamp is in fact inserted and working, but you forgot to set the duration:

section.vclamp(holding=-70, voltage=20)

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

nrn_patch-7.3.0.tar.gz (21.3 kB view details)

Uploaded Source

Built Distribution

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

nrn_patch-7.3.0-py3-none-any.whl (23.0 kB view details)

Uploaded Python 3

File details

Details for the file nrn_patch-7.3.0.tar.gz.

File metadata

  • Download URL: nrn_patch-7.3.0.tar.gz
  • Upload date:
  • Size: 21.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nrn_patch-7.3.0.tar.gz
Algorithm Hash digest
SHA256 7d23d8097cdfa6291c3d9ab982250a278678a5f0bcbd32acd65c3fe46d95f7c4
MD5 0519e63635f1a743b123480fb847f9c1
BLAKE2b-256 8cc19cafa6f43abaf0f83b0968c80eb4ece53b6854f26247ab9c7e1b992719bc

See more details on using hashes here.

File details

Details for the file nrn_patch-7.3.0-py3-none-any.whl.

File metadata

  • Download URL: nrn_patch-7.3.0-py3-none-any.whl
  • Upload date:
  • Size: 23.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nrn_patch-7.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 94d0a4e3ce473b80c41c60bac6e2e13173fb0c3e41f17061aa330aaaa4852ba7
MD5 9843d3425d1b393332e18bd51f0a8ae6
BLAKE2b-256 8813ea5d03afba5038f8aa74fd8ad4a4c12bc831c9499f373a34f2a3f1288f1e

See more details on using hashes here.

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