- Timestamp:
- 05/28/11 22:21:06 (12 months ago)
- Location:
- trunk/src
- Files:
-
- 2 modified
-
neuron/nineml.py (modified) (1 diff)
-
nineml/cells.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/neuron/nineml.py
r971 r972 99 99 from nineml2nmodl import write_nmodl 100 100 write_nmodl(xml_file, weight_variables) # weight variables should really come from xml file 101 102 print "Running 'nrnivmodl' from %s"%NMODL_DIR 101 103 p = subprocess.check_call(["nrnivmodl"]) 102 104 os.chdir(cwd) -
trunk/src/nineml/cells.py
r971 r972 394 394 395 395 396 dct["recordable"] = [port.name for port in reduced_component.analog_ports] + ['spikes', 'regime'] 396 # Recording from bindings: 397 dct["recordable"] = [port.name for port in reduced_component.analog_ports] + ['spikes', 'regime'] + [binding.name for binding in reduced_component.bindings] 398 397 399 dct["weight_variables"] = dict([ (syn.namespace,syn.namespace+'_'+syn.weight_connector ) 398 400 for syn in synapse_components ])
