NeuroElectro & SciUnit Showcase
Contributors |
Wiki » History » Version 4
« Previous -
Version 4/7
(diff) -
Next » -
Current version
Richard Gerkin, 30 Apr 2014 14:57
Introduction¶
A project highlighting some of the possible interactions between OSB and NeuroElectro/SciUnit
Installing SciUnit¶
SciUnit https://github.com/rgerkin/sciunit
The Neuroelectro API¶
See here
Testing neuroConstruct models with neurounit (sciunit):¶
In jython:
\$ cd ~/neuroConstruct # Or wherever it is.
\$ ./nCjython # Assumes there is a “jython” somewhere in your system path.
import neurounit.jutils as j
print j.get_volts()
In python:
\$ cd ~/neuroConstruct # Or wherever it is.
\$ python
import neurounit.putils as p
data = p.run() # Opens the bridge to jython.
volts = data.receive() # Runs the simulations and receives the data (hangs).
print volts