Skip to content

Latest commit

 

History

History
39 lines (22 loc) · 879 Bytes

README.md

File metadata and controls

39 lines (22 loc) · 879 Bytes

NeuralCircuits

Small biophysical neural circuit models

Prerequisites

  1. Numpy

The standard python module for matrix and vector computations: https://pypi.python.org/pypi/numpy.

  1. Scipy

The standard python module for statistical analysis: http://www.scipy.org/install.html.

  1. Matplotlib

The standard python module for data visualization: http://matplotlib.org/users/installing.html.

  1. NEURON

A simulator for biophysical models of neurons and networks of neurons: https://github.com/neuronsimulator/nrn

Building Model

Once NEURON is installed, set the PATH and PYTHONPATH environment variables as follows:

export PYTHONPATH=$HOME/install/lib/python:$PYTHONPATH
export PATH=$HOME/install/bin:$PATH

As in a typical NEURON workflow, use nrnivmodl to translate MOD files:

nrnivmodl mechanisms

Running Simulations